From 4b81e245bcbf68611c081ecc87cd784a7ec36707 Mon Sep 17 00:00:00 2001 From: Oluwatosin Adewale Date: Thu, 15 Nov 2018 15:34:08 -0800 Subject: [PATCH 1/9] authentication-type can be all to permit both ssh key and password authentication --- .../azure/cli/command_modules/vm/_params.py | 2 +- .../command_modules/vm/_template_builder.py | 20 ++++++------ .../cli/command_modules/vm/_validators.py | 31 +++++++++++++++---- .../azure/cli/command_modules/vm/custom.py | 2 +- 4 files changed, 36 insertions(+), 19 deletions(-) diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_params.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_params.py index fe75d77a91c..57f4394b889 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_params.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_params.py @@ -410,7 +410,7 @@ def load_arguments(self, _): c.argument('admin_password', help="Password for the VM if authentication type is 'Password'.") c.argument('ssh_key_value', help='SSH public key or public key file path.', completer=FilesCompleter(), type=file_type) c.argument('ssh_dest_key_path', help='Destination file path on the VM for the SSH key.') - c.argument('authentication_type', help='Type of authentication to use with the VM. Defaults to password for Windows and SSH public key for Linux.', arg_type=get_enum_type(['ssh', 'password'])) + c.argument('authentication_type', help='Type of authentication to use with the VM. Defaults to password for Windows and SSH public key for Linux. If "all" is specified, a password and SSH public key must be provided.', arg_type=get_enum_type(['ssh', 'password', 'all'])) with self.argument_context(scope, arg_group='Storage') as c: if StorageAccountTypes: diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_template_builder.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_template_builder.py index 0792f2ff65e..5f745161c60 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_template_builder.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_template_builder.py @@ -244,7 +244,7 @@ def build_msi_role_assignment(vm_vmss_name, vm_vmss_resource_id, role_definition def build_vm_resource( # pylint: disable=too-many-locals cmd, name, location, tags, size, storage_profile, nics, admin_username, availability_set_id=None, admin_password=None, ssh_key_value=None, ssh_key_path=None, - image_reference=None, os_disk_name=None, custom_image_os_type=None, + image_reference=None, os_disk_name=None, custom_image_os_type=None, authentication_type=None, os_publisher=None, os_offer=None, os_sku=None, os_version=None, os_vhd_uri=None, attach_os_disk=None, os_disk_size_gb=None, custom_data=None, secrets=None, license_type=None, zone=None, disk_info=None, boot_diagnostics_storage_uri=None, ultra_ssd_enabled=None): @@ -266,7 +266,7 @@ def _build_os_profile(): if ssh_key_value and ssh_key_path: os_profile['linuxConfiguration'] = { - 'disablePasswordAuthentication': True, + 'disablePasswordAuthentication': authentication_type != 'all', 'ssh': { 'publicKeys': [ { @@ -366,12 +366,8 @@ def _build_storage_profile(): return profile - vm_properties = { - 'hardwareProfile': {'vmSize': size}, - 'networkProfile': {'networkInterfaces': nics} - } - - vm_properties['storageProfile'] = _build_storage_profile() + vm_properties = {'hardwareProfile': {'vmSize': size}, 'networkProfile': {'networkInterfaces': nics}, + 'storageProfile': _build_storage_profile()} if availability_set_id: vm_properties['availabilitySet'] = {'id': availability_set_id} @@ -707,11 +703,13 @@ def build_vmss_resource(cmd, name, naming_prefix, location, tags, overprovision, 'computerNamePrefix': naming_prefix, 'adminUsername': admin_username } - if authentication_type == 'password' and admin_password: + + if admin_password: os_profile['adminPassword'] = "[parameters('adminPassword')]" - else: + + if ssh_key_value and ssh_key_path: os_profile['linuxConfiguration'] = { - 'disablePasswordAuthentication': True, + 'disablePasswordAuthentication': authentication_type != 'all', 'ssh': { 'publicKeys': [ { diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py index 03d2282b77b..0da4a36c786 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py @@ -841,12 +841,9 @@ def _validate_vm_vmss_create_auth(namespace): "incorrect usage for authentication-type 'password': " "[--admin-username USERNAME] --admin-password PASSWORD") - from knack.prompting import prompt_pass, NoTTYException - try: - if not namespace.admin_password: - namespace.admin_password = prompt_pass('Admin Password: ', confirm=True) - except NoTTYException: - raise CLIError('Please specify password in non-interactive mode.') + # if password not given, attempt to prompt user for password. + if not namespace.admin_password: + _prompt_for_password(namespace) # validate password _validate_admin_password(namespace.admin_password, @@ -863,6 +860,28 @@ def _validate_vm_vmss_create_auth(namespace): namespace.ssh_dest_key_path = \ '/home/{}/.ssh/authorized_keys'.format(namespace.admin_username) + elif namespace.authentication_type == 'all': + if namespace.os_type.lower() == 'windows': + raise CLIError('SSH not supported for Windows VMs. Use password authentication.') + + if not namespace.admin_password: + _prompt_for_password(namespace) + _validate_admin_password(namespace.admin_password, + namespace.os_type) + + validate_ssh_key(namespace) + if not namespace.ssh_dest_key_path: + namespace.ssh_dest_key_path = \ + '/home/{}/.ssh/authorized_keys'.format(namespace.admin_username) + + +def _prompt_for_password(namespace): + from knack.prompting import prompt_pass, NoTTYException + try: + namespace.admin_password = prompt_pass('Admin Password: ', confirm=True) + except NoTTYException: + raise CLIError('Please specify password in non-interactive mode.') + def _validate_admin_username(username, os_type): import re diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/custom.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/custom.py index f220f6a208a..c7e66a48f0a 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/custom.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/custom.py @@ -622,7 +622,7 @@ def create_vm(cmd, vm_name, resource_group_name, image=None, size='Standard_DS1_ cmd=cmd, name=vm_name, location=location, tags=tags, size=size, storage_profile=storage_profile, nics=nics, admin_username=admin_username, availability_set_id=availability_set, admin_password=admin_password, ssh_key_value=ssh_key_value, ssh_key_path=ssh_dest_key_path, image_reference=image, - os_disk_name=os_disk_name, custom_image_os_type=os_type, + os_disk_name=os_disk_name, custom_image_os_type=os_type, authentication_type=authentication_type, os_publisher=os_publisher, os_offer=os_offer, os_sku=os_sku, os_version=os_version, os_vhd_uri=os_vhd_uri, attach_os_disk=attach_os_disk, os_disk_size_gb=os_disk_size_gb, custom_data=custom_data, secrets=secrets, license_type=license_type, zone=zone, disk_info=disk_info, From e14aa497d6bd900ccb506056f580f86493f6099e Mon Sep 17 00:00:00 2001 From: Oluwatosin Adewale Date: Thu, 15 Nov 2018 18:18:15 -0800 Subject: [PATCH 2/9] Added tests and updated authentication type validation error. --- .../cli/command_modules/vm/_validators.py | 6 +- .../recordings/test_vm_create_auth.yaml | 1106 +++++++ .../recordings/test_vmss_create_auth.yaml | 715 ++++ .../test_vmss_create_ephemeral_os_disk.yaml | 2885 ++--------------- .../recordings/test_vmss_create_options.yaml | 1567 ++------- .../test_vmss_update_instance_disks.yaml | 1888 ++--------- .../vm/tests/latest/test_vm_commands.py | 42 + 7 files changed, 2847 insertions(+), 5362 deletions(-) create mode 100644 src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_auth.yaml create mode 100644 src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_auth.yaml diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py index 0da4a36c786..efcb63a2af2 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py @@ -837,9 +837,7 @@ def _validate_vm_vmss_create_auth(namespace): # validate proper arguments supplied based on the authentication type if namespace.authentication_type == 'password': if namespace.ssh_key_value or namespace.ssh_dest_key_path: - raise ValueError( - "incorrect usage for authentication-type 'password': " - "[--admin-username USERNAME] --admin-password PASSWORD") + raise CLIError('SSH key cannot be used with password authentication type.') # if password not given, attempt to prompt user for password. if not namespace.admin_password: @@ -852,7 +850,7 @@ def _validate_vm_vmss_create_auth(namespace): elif namespace.authentication_type == 'ssh': if namespace.admin_password: - raise ValueError('Admin password cannot be used with SSH authentication type') + raise CLIError('Admin password cannot be used with SSH authentication type.') validate_ssh_key(namespace) diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_auth.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_auth.yaml new file mode 100644 index 00000000000..370054c02ec --- /dev/null +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_auth.yaml @@ -0,0 +1,1106 @@ +interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2018-11-16T01:46:41Z"}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [group create] + Connection: [keep-alive] + Content-Length: ['110'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--location --name --tag] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001","name":"cli_test_vm_create_existing000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-16T01:46:41Z"},"properties":{"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['384'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:46:42 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.19.1] + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + response: + body: {string: "{\n \"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\"\ + ,\n \"contentVersion\":\"1.0.0.0\",\n \"parameters\":{},\n \"variables\"\ + :{},\n \"resources\":[],\n\n \"outputs\":{\n \"aliases\":{\n \"\ + type\":\"object\",\n \"value\":{\n\n \"Linux\":{\n \"\ + CentOS\":{\n \"publisher\":\"OpenLogic\",\n \"offer\"\ + :\"CentOS\",\n \"sku\":\"7.3\",\n \"version\":\"latest\"\ + \n },\n \"CoreOS\":{\n \"publisher\":\"CoreOS\"\ + ,\n \"offer\":\"CoreOS\",\n \"sku\":\"Stable\",\n \ + \ \"version\":\"latest\"\n },\n \"Debian\":{\n\ + \ \"publisher\":\"credativ\",\n \"offer\":\"Debian\"\ + ,\n \"sku\":\"8\",\n \"version\":\"latest\"\n \ + \ },\n \"openSUSE-Leap\": {\n \"publisher\":\"SUSE\"\ + ,\n \"offer\":\"openSUSE-Leap\",\n \"sku\":\"42.3\"\ + ,\n \"version\": \"latest\"\n },\n \"RHEL\":{\n\ + \ \"publisher\":\"RedHat\",\n \"offer\":\"RHEL\",\n\ + \ \"sku\":\"7.3\",\n \"version\":\"latest\"\n \ + \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \ + \ \"offer\":\"SLES\",\n \"sku\":\"12-SP2\",\n \ + \ \"version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \ + \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\"\ + ,\n \"sku\":\"16.04-LTS\",\n \"version\":\"latest\"\n\ + \ }\n },\n\n \"Windows\":{\n \"Win2016Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2016-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\n \"Win2012R2Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2012-R2-Datacenter\",\n\ + \ \"version\":\"latest\"\n },\n \"Win2012Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2012-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\n \"Win2008R2SP1\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2008-R2-SP1\",\n \ + \ \"version\":\"latest\"\n }\n }\n }\n }\n }\n\ + }\n"} + headers: + accept-ranges: [bytes] + access-control-allow-origin: ['*'] + cache-control: [max-age=300] + connection: [keep-alive] + content-length: ['2235'] + content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] + content-type: [text/plain; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:46:43 GMT'] + etag: ['"60d07919b4224266adafb81340896eea100dc887"'] + expires: ['Fri, 16 Nov 2018 01:51:43 GMT'] + source-age: ['133'] + strict-transport-security: [max-age=31536000] + vary: ['Authorization,Accept-Encoding'] + via: [1.1 varnish] + x-cache: [HIT] + x-cache-hits: ['1'] + x-content-type-options: [nosniff] + x-fastly-request-id: [d517e6772b2b67ccf5c3477d4315cafdcd0ad7ca] + x-frame-options: [deny] + x-geo-block-list: [''] + x-github-request-id: ['28CE:2A95:1F2B3:2185C:5BEE20FE'] + x-served-by: [cache-dfw18626-DFW] + x-timer: ['S1542332804.801061,VS0,VE1'] + x-xss-protection: [1; mode=block] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vm create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 + response: + body: {string: '{"value":[]}'} + headers: + cache-control: [no-cache] + content-length: ['12'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:46:43 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + 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": + [{"name": "vm1VNET", "type": "Microsoft.Network/virtualNetworks", "location": + "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties": + {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name": + "vm1Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": "Microsoft.Network/networkSecurityGroups", + "name": "vm1NSG", "apiVersion": "2015-06-15", "location": "westus", "tags": + {}, "dependsOn": [], "properties": {"securityRules": [{"name": "default-allow-ssh", + "properties": {"protocol": "Tcp", "sourcePortRange": "*", "destinationPortRange": + "22", "sourceAddressPrefix": "*", "destinationAddressPrefix": "*", "access": + "Allow", "priority": 1000, "direction": "Inbound"}}]}}, {"apiVersion": "2018-01-01", + "type": "Microsoft.Network/publicIPAddresses", "name": "vm1PublicIP", "location": + "westus", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": + null}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces", + "name": "vm1VMNic", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vm1VNET", + "Microsoft.Network/networkSecurityGroups/vm1NSG", "Microsoft.Network/publicIpAddresses/vm1PublicIP"], + "properties": {"ipConfigurations": [{"name": "ipconfigvm1", "properties": {"privateIPAllocationMethod": + "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}}, + {"apiVersion": "2018-10-01", "type": "Microsoft.Compute/virtualMachines", "name": + "vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm1VMNic"], + "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": + {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}, + "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": + "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": + {"publisher": "credativ", "offer": "Debian", "sku": "8", "version": "latest"}}, + "osProfile": {"computerName": "vm1", "adminUsername": "myadmin", "adminPassword": + "[parameters(\''adminPassword\'')]", "linuxConfiguration": {"disablePasswordAuthentication": + false, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n", "path": "/home/myadmin/.ssh/authorized_keys"}]}}}}}], + "outputs": {}}, "parameters": {"adminPassword": {"value": "testPassword0"}}, + "mode": "Incremental"}}''' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vm create] + Connection: [keep-alive] + Content-Length: ['4191'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/vm_deploy_yORh4hzgpIRsgQ1AjefdUDAjwaNFmzrZ","name":"vm_deploy_yORh4hzgpIRsgQ1AjefdUDAjwaNFmzrZ","properties":{"templateHash":"16488766462656347104","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-16T01:46:46.7915708Z","duration":"PT0.9998832S","correlationId":"3dea9321-8832-42d4-a614-7d5a8dbd9084","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/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/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/vm_deploy_yORh4hzgpIRsgQ1AjefdUDAjwaNFmzrZ/operationStatuses/08586592740796859388?api-version=2018-05-01'] + cache-control: [no-cache] + content-length: ['2741'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:46:46 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vm create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592740796859388?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:47:17 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [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] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592740796859388?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:47:47 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [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] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592740796859388?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:48:17 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [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] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592740796859388?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:48:47 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [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] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592740796859388?api-version=2018-05-01 + response: + body: {string: '{"status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['22'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:18 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [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] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/vm_deploy_yORh4hzgpIRsgQ1AjefdUDAjwaNFmzrZ","name":"vm_deploy_yORh4hzgpIRsgQ1AjefdUDAjwaNFmzrZ","properties":{"templateHash":"16488766462656347104","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-16T01:49:03.6238957Z","duration":"PT2M17.8322081S","correlationId":"3dea9321-8832-42d4-a614-7d5a8dbd9084","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}'} + headers: + cache-control: [no-cache] + content-length: ['3808'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:18 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [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] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2018-10-01 + response: + body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"ca7619d3-0a05-44ea-a35c-c6b2e215824a\"\ + ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ + \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ + \ \"publisher\": \"credativ\",\r\n \"offer\": \"Debian\",\r\n\ + \ \"sku\": \"8\",\r\n \"version\": \"latest\"\r\n },\r\n\ + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ + : \"vm1_OsDisk_1_09b15709fd4e4ebdb2a1d3931da3b7b9\",\r\n \"createOption\"\ + : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\ + : {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_09b15709fd4e4ebdb2a1d3931da3b7b9\"\ + \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ + : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\ + ,\r\n \"adminUsername\": \"myadmin\",\r\n \"linuxConfiguration\"\ + : {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\"\ + : {\r\n \"publicKeys\": [\r\n {\r\n \"path\"\ + : \"/home/myadmin/.ssh/authorized_keys\",\r\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\r\n }\r\n ]\r\n },\r\n\ + \ \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\ + \n \"allowExtensionOperations\": true\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ + }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ + : {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n\ + \ \"statuses\": [\r\n {\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\": \"2018-11-16T01:49:19+00:00\"\ + \r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n \ + \ {\r\n \"name\": \"vm1_OsDisk_1_09b15709fd4e4ebdb2a1d3931da3b7b9\"\ + ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ + : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ + \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ + \ \"time\": \"2018-11-16T01:47:21.277243+00:00\"\r\n }\r\n\ + \ ]\r\n }\r\n ],\r\n \"statuses\": [\r\n \ + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"\ + level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\"\ + ,\r\n \"time\": \"2018-11-16T01:48:55.4647276+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 \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ + ,\r\n \"name\": \"vm1\"\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['3889'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:19 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31989'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vm create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01 + response: + body: {string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ + ,\r\n \"etag\": \"W/\\\"e8e3b9f4-6490-436a-b7c4-0bf59e471f60\\\"\",\r\n \ + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"19914a91-bf2b-423a-a84a-87f5b20b7ea7\"\ + ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ + ,\r\n \"etag\": \"W/\\\"e8e3b9f4-6490-436a-b7c4-0bf59e471f60\\\"\"\ + ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ + : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\ + \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\ + \r\n },\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\": \"oaegooqurruunkvv1zpv0z5vhd.dx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-37-70-37\",\r\n \"enableAcceleratedNetworking\"\ + : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\ + \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ + \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\ + \n}"} + headers: + cache-control: [no-cache] + content-length: ['2568'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:19 GMT'] + etag: [W/"e8e3b9f4-6490-436a-b7c4-0bf59e471f60"] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [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] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01 + response: + body: {string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\ + ,\r\n \"etag\": \"W/\\\"c060acaf-b420-45d3-8bd5-c1f3f7baf42d\\\"\",\r\n \ + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0225c6a-be14-4686-bd62-262fb5af0f2a\"\ + ,\r\n \"ipAddress\": \"40.112.179.216\",\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/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ + \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\ + \n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\ + \n }\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['1023'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:20 GMT'] + etag: [W/"c060acaf-b420-45d3-8bd5-c1f3f7baf42d"] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [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 show] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2018-10-01 + response: + body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"ca7619d3-0a05-44ea-a35c-c6b2e215824a\"\ + ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ + \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ + \ \"publisher\": \"credativ\",\r\n \"offer\": \"Debian\",\r\n\ + \ \"sku\": \"8\",\r\n \"version\": \"latest\"\r\n },\r\n\ + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ + : \"vm1_OsDisk_1_09b15709fd4e4ebdb2a1d3931da3b7b9\",\r\n \"createOption\"\ + : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\ + : {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_09b15709fd4e4ebdb2a1d3931da3b7b9\"\ + \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ + : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\ + ,\r\n \"adminUsername\": \"myadmin\",\r\n \"linuxConfiguration\"\ + : {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\"\ + : {\r\n \"publicKeys\": [\r\n {\r\n \"path\"\ + : \"/home/myadmin/.ssh/authorized_keys\",\r\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\r\n }\r\n ]\r\n },\r\n\ + \ \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\ + \n \"allowExtensionOperations\": true\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ + }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"\ + Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"\ + tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ + ,\r\n \"name\": \"vm1\"\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['2717'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:21 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31988'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.19.1] + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + response: + body: {string: "{\n \"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\"\ + ,\n \"contentVersion\":\"1.0.0.0\",\n \"parameters\":{},\n \"variables\"\ + :{},\n \"resources\":[],\n\n \"outputs\":{\n \"aliases\":{\n \"\ + type\":\"object\",\n \"value\":{\n\n \"Linux\":{\n \"\ + CentOS\":{\n \"publisher\":\"OpenLogic\",\n \"offer\"\ + :\"CentOS\",\n \"sku\":\"7.3\",\n \"version\":\"latest\"\ + \n },\n \"CoreOS\":{\n \"publisher\":\"CoreOS\"\ + ,\n \"offer\":\"CoreOS\",\n \"sku\":\"Stable\",\n \ + \ \"version\":\"latest\"\n },\n \"Debian\":{\n\ + \ \"publisher\":\"credativ\",\n \"offer\":\"Debian\"\ + ,\n \"sku\":\"8\",\n \"version\":\"latest\"\n \ + \ },\n \"openSUSE-Leap\": {\n \"publisher\":\"SUSE\"\ + ,\n \"offer\":\"openSUSE-Leap\",\n \"sku\":\"42.3\"\ + ,\n \"version\": \"latest\"\n },\n \"RHEL\":{\n\ + \ \"publisher\":\"RedHat\",\n \"offer\":\"RHEL\",\n\ + \ \"sku\":\"7.3\",\n \"version\":\"latest\"\n \ + \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \ + \ \"offer\":\"SLES\",\n \"sku\":\"12-SP2\",\n \ + \ \"version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \ + \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\"\ + ,\n \"sku\":\"16.04-LTS\",\n \"version\":\"latest\"\n\ + \ }\n },\n\n \"Windows\":{\n \"Win2016Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2016-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\n \"Win2012R2Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2012-R2-Datacenter\",\n\ + \ \"version\":\"latest\"\n },\n \"Win2012Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2012-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\n \"Win2008R2SP1\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2008-R2-SP1\",\n \ + \ \"version\":\"latest\"\n }\n }\n }\n }\n }\n\ + }\n"} + headers: + accept-ranges: [bytes] + access-control-allow-origin: ['*'] + cache-control: [max-age=300] + connection: [keep-alive] + content-length: ['2235'] + content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] + content-type: [text/plain; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:22 GMT'] + etag: ['"60d07919b4224266adafb81340896eea100dc887"'] + expires: ['Fri, 16 Nov 2018 01:54:22 GMT'] + source-age: ['291'] + strict-transport-security: [max-age=31536000] + vary: ['Authorization,Accept-Encoding'] + via: [1.1 varnish] + x-cache: [HIT] + x-cache-hits: ['1'] + x-content-type-options: [nosniff] + x-fastly-request-id: [975ff13f422c45013568df982b9a8fec325517ca] + x-frame-options: [deny] + x-geo-block-list: [''] + x-github-request-id: ['28CE:2A95:1F2B3:2185C:5BEE20FE'] + x-served-by: [cache-dfw18632-DFW] + x-timer: ['S1542332962.043886,VS0,VE0'] + x-xss-protection: [1; mode=block] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vm create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 + response: + body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\ + \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\"\ + ,\r\n \"etag\": \"W/\\\"e2a34fbf-2cce-4aa3-930a-d8c4f7448042\\\"\",\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ + : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a670870-8c14-4669-aab5-de5f5d67f53b\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \ + \ \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\"\ + : [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\ + ,\r\n \"etag\": \"W/\\\"e2a34fbf-2cce-4aa3-930a-d8c4f7448042\\\"\ + \",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n\ + \ \"ipConfigurations\": [\r\n {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ + \r\n }\r\n ]\r\n },\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\ + \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n\ + \ ]\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['1750'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:21 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"type": "Microsoft.Network/networkSecurityGroups", "name": "vm2NSG", "apiVersion": + "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [], "properties": + {"securityRules": [{"name": "default-allow-ssh", "properties": {"protocol": + "Tcp", "sourcePortRange": "*", "destinationPortRange": "22", "sourceAddressPrefix": + "*", "destinationAddressPrefix": "*", "access": "Allow", "priority": 1000, "direction": + "Inbound"}}]}}, {"apiVersion": "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", + "name": "vm2PublicIP", "location": "westus", "tags": {}, "dependsOn": [], "properties": + {"publicIPAllocationMethod": null}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces", + "name": "vm2VMNic", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkSecurityGroups/vm2NSG", + "Microsoft.Network/publicIpAddresses/vm2PublicIP"], "properties": {"ipConfigurations": + [{"name": "ipconfigvm2", "properties": {"privateIPAllocationMethod": "Dynamic", + "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"}}}, + {"apiVersion": "2018-10-01", "type": "Microsoft.Compute/virtualMachines", "name": + "vm2", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm2VMNic"], + "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": + {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"}]}, + "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": + "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": + {"publisher": "credativ", "offer": "Debian", "sku": "8", "version": "latest"}}, + "osProfile": {"computerName": "vm2", "adminUsername": "myadmin", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n", "path": "/home/myadmin/.ssh/authorized_keys"}]}}}}}], + "outputs": {}}, "parameters": {}, "mode": "Incremental"}}''' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vm create] + Connection: [keep-alive] + Content-Length: ['3659'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/vm_deploy_Fp0m3XyYVoOxjRqYrVsCHrRtYsamor7P","name":"vm_deploy_Fp0m3XyYVoOxjRqYrVsCHrRtYsamor7P","properties":{"templateHash":"473089794834286403","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-16T01:49:24.5895108Z","duration":"PT0.813999S","correlationId":"559e90cd-6f90-49c4-b60d-fa7bbc43d1b8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}'} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/vm_deploy_Fp0m3XyYVoOxjRqYrVsCHrRtYsamor7P/operationStatuses/08586592739217021123?api-version=2018-05-01'] + cache-control: [no-cache] + content-length: ['2361'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:24 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vm create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592739217021123?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:54 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [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] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592739217021123?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:50:24 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [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] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592739217021123?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:50:55 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [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] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592739217021123?api-version=2018-05-01 + response: + body: {string: '{"status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['22'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:51:25 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [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] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Resources/deployments/vm_deploy_Fp0m3XyYVoOxjRqYrVsCHrRtYsamor7P","name":"vm_deploy_Fp0m3XyYVoOxjRqYrVsCHrRtYsamor7P","properties":{"templateHash":"473089794834286403","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-16T01:51:22.5267477Z","duration":"PT1M58.7512359S","correlationId":"559e90cd-6f90-49c4-b60d-fa7bbc43d1b8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}'} + headers: + cache-control: [no-cache] + content-length: ['3225'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:51:26 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [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] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2018-10-01 + response: + body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"2f6e9f11-82c2-4805-8780-7705ee587189\"\ + ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ + \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ + \ \"publisher\": \"credativ\",\r\n \"offer\": \"Debian\",\r\n\ + \ \"sku\": \"8\",\r\n \"version\": \"latest\"\r\n },\r\n\ + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ + : \"vm2_OsDisk_1_be7f190fa8d943e4809c9be554004e22\",\r\n \"createOption\"\ + : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\ + : {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_be7f190fa8d943e4809c9be554004e22\"\ + \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ + : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2\"\ + ,\r\n \"adminUsername\": \"myadmin\",\r\n \"linuxConfiguration\"\ + : {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\"\ + : {\r\n \"publicKeys\": [\r\n {\r\n \"path\"\ + : \"/home/myadmin/.ssh/authorized_keys\",\r\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\r\n }\r\n ]\r\n },\r\n\ + \ \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\ + \n \"allowExtensionOperations\": true\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"\ + }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ + : {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n\ + \ \"statuses\": [\r\n {\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\": \"2018-11-16T01:51:27+00:00\"\ + \r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n \ + \ {\r\n \"name\": \"vm2_OsDisk_1_be7f190fa8d943e4809c9be554004e22\"\ + ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ + : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ + \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ + \ \"time\": \"2018-11-16T01:49:53.4334914+00:00\"\r\n }\r\ + \n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n \ + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\"\ + ,\r\n \"time\": \"2018-11-16T01:51:08.4976038+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 \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm2\"\ + ,\r\n \"name\": \"vm2\"\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['3889'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:51:27 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31984'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vm create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2018-01-01 + response: + body: {string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"\ + ,\r\n \"etag\": \"W/\\\"f06c100c-e05a-4c40-b8bd-e298616f9109\\\"\",\r\n \ + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"26ca0bca-f312-400a-8599-5438772e21a0\"\ + ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\ + ,\r\n \"etag\": \"W/\\\"f06c100c-e05a-4c40-b8bd-e298616f9109\\\"\"\ + ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\"\ + : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"\ + \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\ + \r\n },\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\": \"oaegooqurruunkvv1zpv0z5vhd.dx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-3B-9F-B2\",\r\n \"enableAcceleratedNetworking\"\ + : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\ + \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm2\"\ + \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\ + \n}"} + headers: + cache-control: [no-cache] + content-length: ['2568'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:51:27 GMT'] + etag: [W/"f06c100c-e05a-4c40-b8bd-e298616f9109"] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [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] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2018-01-01 + response: + body: {string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"\ + ,\r\n \"etag\": \"W/\\\"5399eb62-d1b0-4ca4-bec6-1fa4c01c6ae4\\\"\",\r\n \ + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"23aa869c-17aa-4a90-ac88-52ec84286472\"\ + ,\r\n \"ipAddress\": \"40.85.148.78\",\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/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\ + \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\ + \n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\ + \n }\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['1021'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:51:28 GMT'] + etag: [W/"5399eb62-d1b0-4ca4-bec6-1fa4c01c6ae4"] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [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 show] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm2?api-version=2018-10-01 + response: + body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"2f6e9f11-82c2-4805-8780-7705ee587189\"\ + ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ + \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ + \ \"publisher\": \"credativ\",\r\n \"offer\": \"Debian\",\r\n\ + \ \"sku\": \"8\",\r\n \"version\": \"latest\"\r\n },\r\n\ + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ + : \"vm2_OsDisk_1_be7f190fa8d943e4809c9be554004e22\",\r\n \"createOption\"\ + : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\ + : {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_be7f190fa8d943e4809c9be554004e22\"\ + \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ + : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2\"\ + ,\r\n \"adminUsername\": \"myadmin\",\r\n \"linuxConfiguration\"\ + : {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\"\ + : {\r\n \"publicKeys\": [\r\n {\r\n \"path\"\ + : \"/home/myadmin/.ssh/authorized_keys\",\r\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\r\n }\r\n ]\r\n },\r\n\ + \ \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\ + \n \"allowExtensionOperations\": true\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"\ + }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"\ + Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"\ + tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existing000001/providers/Microsoft.Compute/virtualMachines/vm2\"\ + ,\r\n \"name\": \"vm2\"\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['2716'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:51:28 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31981'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--name --yes --no-wait] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_existing000001?api-version=2018-05-01 + response: + body: {string: ''} + headers: + cache-control: [no-cache] + content-length: ['0'] + date: ['Fri, 16 Nov 2018 01:51:29 GMT'] + expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk06NUZDUkVBVEU6NUZFWElTVElOR0pSVlZDRFFaQ0JTN3w0RkVGRDI3OEE1QTkyODc3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + status: {code: 202, message: Accepted} +version: 1 diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_auth.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_auth.yaml new file mode 100644 index 00000000000..9d22f49efe6 --- /dev/null +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_auth.yaml @@ -0,0 +1,715 @@ +interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2018-11-16T01:46:41Z"}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [group create] + Connection: [keep-alive] + Content-Length: ['110'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--location --name --tag] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001","name":"cli_test_vmss_create_options000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-16T01:46:41Z"},"properties":{"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['384'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:46:42 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.19.1] + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + response: + body: {string: "{\n \"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\"\ + ,\n \"contentVersion\":\"1.0.0.0\",\n \"parameters\":{},\n \"variables\"\ + :{},\n \"resources\":[],\n\n \"outputs\":{\n \"aliases\":{\n \"\ + type\":\"object\",\n \"value\":{\n\n \"Linux\":{\n \"\ + CentOS\":{\n \"publisher\":\"OpenLogic\",\n \"offer\"\ + :\"CentOS\",\n \"sku\":\"7.3\",\n \"version\":\"latest\"\ + \n },\n \"CoreOS\":{\n \"publisher\":\"CoreOS\"\ + ,\n \"offer\":\"CoreOS\",\n \"sku\":\"Stable\",\n \ + \ \"version\":\"latest\"\n },\n \"Debian\":{\n\ + \ \"publisher\":\"credativ\",\n \"offer\":\"Debian\"\ + ,\n \"sku\":\"8\",\n \"version\":\"latest\"\n \ + \ },\n \"openSUSE-Leap\": {\n \"publisher\":\"SUSE\"\ + ,\n \"offer\":\"openSUSE-Leap\",\n \"sku\":\"42.3\"\ + ,\n \"version\": \"latest\"\n },\n \"RHEL\":{\n\ + \ \"publisher\":\"RedHat\",\n \"offer\":\"RHEL\",\n\ + \ \"sku\":\"7.3\",\n \"version\":\"latest\"\n \ + \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \ + \ \"offer\":\"SLES\",\n \"sku\":\"12-SP2\",\n \ + \ \"version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \ + \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\"\ + ,\n \"sku\":\"16.04-LTS\",\n \"version\":\"latest\"\n\ + \ }\n },\n\n \"Windows\":{\n \"Win2016Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2016-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\n \"Win2012R2Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2012-R2-Datacenter\",\n\ + \ \"version\":\"latest\"\n },\n \"Win2012Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2012-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\n \"Win2008R2SP1\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2008-R2-SP1\",\n \ + \ \"version\":\"latest\"\n }\n }\n }\n }\n }\n\ + }\n"} + headers: + accept-ranges: [bytes] + access-control-allow-origin: ['*'] + cache-control: [max-age=300] + connection: [keep-alive] + content-length: ['2235'] + content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] + content-type: [text/plain; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:46:43 GMT'] + etag: ['"60d07919b4224266adafb81340896eea100dc887"'] + expires: ['Fri, 16 Nov 2018 01:51:43 GMT'] + source-age: ['133'] + strict-transport-security: [max-age=31536000] + vary: ['Authorization,Accept-Encoding'] + via: [1.1 varnish] + x-cache: [HIT] + x-cache-hits: ['1'] + x-content-type-options: [nosniff] + x-fastly-request-id: [b6ecf883203e93ad9dcabf6e5b1de55c543450f0] + x-frame-options: [deny] + x-geo-block-list: [''] + x-github-request-id: ['28CE:2A95:1F2B3:2185C:5BEE20FE'] + x-served-by: [cache-dfw18650-DFW] + x-timer: ['S1542332804.802677,VS0,VE0'] + x-xss-protection: [1; mode=block] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 + response: + body: {string: '{"value":[]}'} + headers: + cache-control: [no-cache] + content-length: ['12'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:46:43 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + 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": + [{"name": "vmss1VNET", "type": "Microsoft.Network/virtualNetworks", "location": + "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties": + {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name": + "vmss1Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"apiVersion": + "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "vmss1LBPublicIP", + "location": "westus", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": + "Dynamic"}}, {"type": "Microsoft.Network/loadBalancers", "name": "vmss1LB", + "location": "westus", "tags": {}, "apiVersion": "2018-01-01", "dependsOn": ["Microsoft.Network/virtualNetworks/vmss1VNET", + "Microsoft.Network/publicIpAddresses/vmss1LBPublicIP"], "properties": {"backendAddressPools": + [{"name": "vmss1LBBEPool"}], "inboundNatPools": [{"name": "vmss1LBNatPool", + "properties": {"frontendIPConfiguration": {"id": "[concat(resourceId(\''Microsoft.Network/loadBalancers\'', + \''vmss1LB\''), \''/frontendIPConfigurations/\'', \''loadBalancerFrontEnd\'')]"}, + "protocol": "tcp", "frontendPortRangeStart": "50000", "frontendPortRangeEnd": + "50119", "backendPort": 22}}], "frontendIPConfigurations": [{"name": "loadBalancerFrontEnd", + "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}}}]}}, + {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "vmss1", "location": + "westus", "tags": {}, "apiVersion": "2018-10-01", "dependsOn": ["Microsoft.Network/virtualNetworks/vmss1VNET", + "Microsoft.Network/loadBalancers/vmss1LB"], "sku": {"name": "Standard_DS1_v2", + "capacity": 2}, "properties": {"overprovision": true, "upgradePolicy": {"mode": + "manual"}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": + "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, + "imageReference": {"publisher": "credativ", "offer": "Debian", "sku": "8", "version": + "latest"}}, "osProfile": {"computerNamePrefix": "vmss16fdb", "adminUsername": + "myadmin", "adminPassword": "[parameters(\''adminPassword\'')]", "linuxConfiguration": + {"disablePasswordAuthentication": false, "ssh": {"publicKeys": [{"path": "/home/myadmin/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations": + [{"name": "vmss16fdbNic", "properties": {"primary": "true", "ipConfigurations": + [{"name": "vmss16fdbIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, + "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], + "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}}, + "singlePlacementGroup": null}}], "outputs": {"VMSS": {"type": "object", "value": + "[reference(resourceId(\''Microsoft.Compute/virtualMachineScaleSets\'', \''vmss1\''),providers(\''Microsoft.Compute\'', + \''virtualMachineScaleSets\'').apiVersions[0])]"}}}, "parameters": {"adminPassword": + {"value": "testPassword0"}}, "mode": "Incremental"}}''' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + Content-Length: ['4694'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_8zBKSvSXWf6Vvj4BKaXcEC9ji34tFqKt","name":"vmss_deploy_8zBKSvSXWf6Vvj4BKaXcEC9ji34tFqKt","properties":{"templateHash":"10111979488223672876","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-16T01:46:46.8588533Z","duration":"PT0.8266926S","correlationId":"1c15c74f-1c6a-427c-8692-b4228c8f0dbc","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_8zBKSvSXWf6Vvj4BKaXcEC9ji34tFqKt/operationStatuses/08586592740794454585?api-version=2018-05-01'] + cache-control: [no-cache] + content-length: ['2691'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:46:47 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592740794454585?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:47:16 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592740794454585?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:47:47 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592740794454585?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:48:17 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592740794454585?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:48:47 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592740794454585?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:18 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592740794454585?api-version=2018-05-01 + response: + body: {string: '{"status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['22'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:48 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --admin-password + --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_8zBKSvSXWf6Vvj4BKaXcEC9ji34tFqKt","name":"vmss_deploy_8zBKSvSXWf6Vvj4BKaXcEC9ji34tFqKt","properties":{"templateHash":"10111979488223672876","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-16T01:49:28.139775Z","duration":"PT2M42.1076143S","correlationId":"1c15c74f-1c6a-427c-8692-b4228c8f0dbc","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss16fdb","adminUsername":"myadmin","linuxConfiguration":{"disablePasswordAuthentication":false,"ssh":{"publicKeys":[{"path":"/home/myadmin/.ssh/authorized_keys","keyData":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"}},"imageReference":{"publisher":"credativ","offer":"Debian","sku":"8","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss16fdbNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss16fdbIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"uniqueId":"bc71471e-df16-4f3a-9b50-0d73fe4e5cb6"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}'} + headers: + cache-control: [no-cache] + content-length: ['6103'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:48 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.19.1] + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + response: + body: {string: "{\n \"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\"\ + ,\n \"contentVersion\":\"1.0.0.0\",\n \"parameters\":{},\n \"variables\"\ + :{},\n \"resources\":[],\n\n \"outputs\":{\n \"aliases\":{\n \"\ + type\":\"object\",\n \"value\":{\n\n \"Linux\":{\n \"\ + CentOS\":{\n \"publisher\":\"OpenLogic\",\n \"offer\"\ + :\"CentOS\",\n \"sku\":\"7.3\",\n \"version\":\"latest\"\ + \n },\n \"CoreOS\":{\n \"publisher\":\"CoreOS\"\ + ,\n \"offer\":\"CoreOS\",\n \"sku\":\"Stable\",\n \ + \ \"version\":\"latest\"\n },\n \"Debian\":{\n\ + \ \"publisher\":\"credativ\",\n \"offer\":\"Debian\"\ + ,\n \"sku\":\"8\",\n \"version\":\"latest\"\n \ + \ },\n \"openSUSE-Leap\": {\n \"publisher\":\"SUSE\"\ + ,\n \"offer\":\"openSUSE-Leap\",\n \"sku\":\"42.3\"\ + ,\n \"version\": \"latest\"\n },\n \"RHEL\":{\n\ + \ \"publisher\":\"RedHat\",\n \"offer\":\"RHEL\",\n\ + \ \"sku\":\"7.3\",\n \"version\":\"latest\"\n \ + \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \ + \ \"offer\":\"SLES\",\n \"sku\":\"12-SP2\",\n \ + \ \"version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \ + \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\"\ + ,\n \"sku\":\"16.04-LTS\",\n \"version\":\"latest\"\n\ + \ }\n },\n\n \"Windows\":{\n \"Win2016Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2016-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\n \"Win2012R2Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2012-R2-Datacenter\",\n\ + \ \"version\":\"latest\"\n },\n \"Win2012Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2012-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\n \"Win2008R2SP1\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2008-R2-SP1\",\n \ + \ \"version\":\"latest\"\n }\n }\n }\n }\n }\n\ + }\n"} + headers: + accept-ranges: [bytes] + access-control-allow-origin: ['*'] + cache-control: [max-age=300] + connection: [keep-alive] + content-length: ['2235'] + content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] + content-type: [text/plain; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:50 GMT'] + etag: ['"60d07919b4224266adafb81340896eea100dc887"'] + expires: ['Fri, 16 Nov 2018 01:54:50 GMT'] + source-age: ['120'] + strict-transport-security: [max-age=31536000] + vary: ['Authorization,Accept-Encoding'] + via: [1.1 varnish] + x-cache: [HIT] + x-cache-hits: ['1'] + x-content-type-options: [nosniff] + x-fastly-request-id: [36b984a690471322de6f89312ead3d2db41553bc] + x-frame-options: [deny] + x-geo-block-list: [''] + x-github-request-id: ['5D42:6491:107CD:11A43:5BEE21C6'] + x-served-by: [cache-pao17449-PAO] + x-timer: ['S1542332990.213833,VS0,VE1'] + x-xss-protection: [1; mode=block] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 + response: + body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss1VNET\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\"\ + ,\r\n \"etag\": \"W/\\\"68f35831-cb0b-495a-879c-80efe798b376\\\"\",\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ + : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddf57943-69f7-493a-ad61-f43b016ff112\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \ + \ \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\"\ + : [\r\n {\r\n \"name\": \"vmss1Subnet\",\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\ + ,\r\n \"etag\": \"W/\\\"68f35831-cb0b-495a-879c-80efe798b376\\\"\ + \",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n\ + \ \"ipConfigurations\": [\r\n {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss16fdbNic/ipConfigurations/vmss16fdbIPConfig\"\ + \r\n },\r\n {\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss16fdbNic/ipConfigurations/vmss16fdbIPConfig\"\ + \r\n }\r\n ]\r\n },\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\ + \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n\ + \ ]\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['2169'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:49 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"apiVersion": "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", + "name": "vmss2LBPublicIP", "location": "westus", "tags": {}, "dependsOn": [], + "properties": {"publicIPAllocationMethod": "Dynamic"}}, {"type": "Microsoft.Network/loadBalancers", + "name": "vmss2LB", "location": "westus", "tags": {}, "apiVersion": "2018-01-01", + "dependsOn": ["Microsoft.Network/publicIpAddresses/vmss2LBPublicIP"], "properties": + {"backendAddressPools": [{"name": "vmss2LBBEPool"}], "inboundNatPools": [{"name": + "vmss2LBNatPool", "properties": {"frontendIPConfiguration": {"id": "[concat(resourceId(\''Microsoft.Network/loadBalancers\'', + \''vmss2LB\''), \''/frontendIPConfigurations/\'', \''loadBalancerFrontEnd\'')]"}, + "protocol": "tcp", "frontendPortRangeStart": "50000", "frontendPortRangeEnd": + "50119", "backendPort": 22}}], "frontendIPConfigurations": [{"name": "loadBalancerFrontEnd", + "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"}}}]}}, + {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "vmss2", "location": + "westus", "tags": {}, "apiVersion": "2018-10-01", "dependsOn": ["Microsoft.Network/loadBalancers/vmss2LB"], + "sku": {"name": "Standard_DS1_v2", "capacity": 2}, "properties": {"overprovision": + true, "upgradePolicy": {"mode": "manual"}, "virtualMachineProfile": {"storageProfile": + {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": + {"storageAccountType": null}}, "imageReference": {"publisher": "credativ", "offer": + "Debian", "sku": "8", "version": "latest"}}, "osProfile": {"computerNamePrefix": + "vmss28fd9", "adminUsername": "myadmin", "linuxConfiguration": {"disablePasswordAuthentication": + true, "ssh": {"publicKeys": [{"path": "/home/myadmin/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations": + [{"name": "vmss28fd9Nic", "properties": {"primary": "true", "ipConfigurations": + [{"name": "vmss28fd9IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, + "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool"}], + "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool"}]}}]}}]}}, + "singlePlacementGroup": null}}], "outputs": {"VMSS": {"type": "object", "value": + "[reference(resourceId(\''Microsoft.Compute/virtualMachineScaleSets\'', \''vmss2\''),providers(\''Microsoft.Compute\'', + \''virtualMachineScaleSets\'').apiVersions[0])]"}}}, "parameters": {}, "mode": + "Incremental"}}''' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + Content-Length: ['4109'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_lTaX4ThQLGttgi0CGHXKFyNOWzpfzaQv","name":"vmss_deploy_lTaX4ThQLGttgi0CGHXKFyNOWzpfzaQv","properties":{"templateHash":"17873580155696600334","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-16T01:49:52.759766Z","duration":"PT0.9716744S","correlationId":"0440978b-2ca8-4bd8-9e1f-4df1d122b3ff","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}]}}'} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_lTaX4ThQLGttgi0CGHXKFyNOWzpfzaQv/operationStatuses/08586592738936895333?api-version=2018-05-01'] + cache-control: [no-cache] + content-length: ['2025'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:49:52 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592738936895333?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:50:22 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592738936895333?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:50:53 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592738936895333?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:51:23 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592738936895333?api-version=2018-05-01 + response: + body: {string: '{"status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['22'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:51:53 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + ParameterSetName: [--image -l -g -n --authentication-type --admin-username --ssh-key-value] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_lTaX4ThQLGttgi0CGHXKFyNOWzpfzaQv","name":"vmss_deploy_lTaX4ThQLGttgi0CGHXKFyNOWzpfzaQv","properties":{"templateHash":"17873580155696600334","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-16T01:51:51.9078216Z","duration":"PT2M0.11973S","correlationId":"0440978b-2ca8-4bd8-9e1f-4df1d122b3ff","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss28fd9","adminUsername":"myadmin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/myadmin/.ssh/authorized_keys","keyData":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"}},"imageReference":{"publisher":"credativ","offer":"Debian","sku":"8","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss28fd9Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss28fd9IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"uniqueId":"fe22abfb-b88f-43d5-82e7-f9a1cd388688"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"}]}}'} + headers: + cache-control: [no-cache] + content-length: ['5229'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:51:54 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--name --yes --no-wait] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001?api-version=2018-05-01 + response: + body: {string: ''} + headers: + cache-control: [no-cache] + content-length: ['0'] + date: ['Fri, 16 Nov 2018 01:51:54 GMT'] + expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk1TUzo1RkNSRUFURTo1Rk9QVElPTlMyRk9UWUpVMjJDNnw2NzU4MzRFMjQ3NUYwREZCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + status: {code: 202, message: Accepted} +version: 1 diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_ephemeral_os_disk.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_ephemeral_os_disk.yaml index 576ad7bac4c..5d1832174ba 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_ephemeral_os_disk.yaml +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_ephemeral_os_disk.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-11-10T02:01:09Z"}}' + "date": "2018-11-16T01:51:55Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,23 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + ParameterSetName: [--location --name --tag] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-10T02:01:09Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-16T01:51:55Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:11 GMT'] + date: ['Fri, 16 Nov 2018 01:51:56 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: null @@ -35,18 +36,20 @@ interactions: CommandName: [vmss create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-10T02:01:09Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-16T01:51:55Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:12 GMT'] + date: ['Fri, 16 Nov 2018 01:51:56 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -59,7 +62,7 @@ interactions: Accept: ['*/*'] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - User-Agent: [python-requests/2.20.0] + User-Agent: [python-requests/2.19.1] method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json response: @@ -106,9 +109,9 @@ interactions: content-length: ['2235'] content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] content-type: [text/plain; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:13 GMT'] + date: ['Fri, 16 Nov 2018 01:51:57 GMT'] etag: ['"60d07919b4224266adafb81340896eea100dc887"'] - expires: ['Sat, 10 Nov 2018 02:06:13 GMT'] + expires: ['Fri, 16 Nov 2018 01:56:57 GMT'] source-age: ['0'] strict-transport-security: [max-age=31536000] vary: ['Authorization,Accept-Encoding'] @@ -116,12 +119,12 @@ interactions: x-cache: [MISS] x-cache-hits: ['0'] x-content-type-options: [nosniff] - x-fastly-request-id: [f63af10293de96fe82a768c49747c077de2afca5] + x-fastly-request-id: [8df8cb6883a6863f1abb0363cf462e3eb8b84243] x-frame-options: [deny] x-geo-block-list: [''] - x-github-request-id: ['2F36:6C32:62425D:6B1452:5BE63BE9'] - x-served-by: [cache-dfw18632-DFW] - x-timer: ['S1541815274.776896,VS0,VE75'] + x-github-request-id: ['8D7A:593B:C1CD8:C9C4C:5BEE22BD'] + x-served-by: [cache-sea1040-SEA] + x-timer: ['S1542333117.233685,VS0,VE91'] x-xss-protection: [1; mode=block] status: {code: 200, message: OK} - request: @@ -131,7 +134,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET @@ -142,7 +147,7 @@ interactions: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:14 GMT'] + date: ['Fri, 16 Nov 2018 01:51:57 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -178,12 +183,12 @@ interactions: "diffDiskSettings": {"option": "Local"}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "16.04-LTS", "version": "latest"}, "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": "premium_lrs"}, "createOption": - "empty", "diskSizeGB": 1}]}, "osProfile": {"computerNamePrefix": "clitec15e", + "empty", "diskSizeGB": 1}]}, "osProfile": {"computerNamePrefix": "clite2cbf", "adminUsername": "tosin", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/tosin/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "clitec15eNic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "clitec15eIPConfig", + "networkProfile": {"networkInterfaceConfigurations": [{"name": "clite2cbfNic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "clite2cbfIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool"}]}}]}}]}}, @@ -198,19 +203,21 @@ interactions: Connection: [keep-alive] Content-Length: ['4648'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","name":"vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","properties":{"templateHash":"6043111070468457383","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-10T02:01:17.6080272Z","duration":"PT1.2612799S","correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-1"}]}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_VBuMAaZohvD3ubHFx7ArDqHm2iZczR7o","name":"vmss_deploy_VBuMAaZohvD3ubHFx7ArDqHm2iZczR7o","properties":{"templateHash":"18052990544446072603","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-16T01:51:59.8866123Z","duration":"PT0.838213S","correlationId":"9d735351-66df-44be-abca-ffa8fc0e68ef","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-1"}]}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/operationStatuses/08586597916091308760?api-version=2018-05-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_VBuMAaZohvD3ubHFx7ArDqHm2iZczR7o/operationStatuses/08586592737664292384?api-version=2018-05-01'] cache-control: [no-cache] content-length: ['2843'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:17 GMT'] + date: ['Fri, 16 Nov 2018 01:51:59 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -224,25 +231,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A01%3A25Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592737664292384?api-version=2018-05-01 response: - body: {string: '{"value":[]}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['12'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:25 GMT'] + date: ['Fri, 16 Nov 2018 01:52:29 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -252,25 +257,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A01%3A35Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592737664292384?api-version=2018-05-01 response: - body: {string: '{"value":[]}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['12'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:35 GMT'] + date: ['Fri, 16 Nov 2018 01:53:00 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -280,54 +283,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A01%3A46Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592737664292384?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['32011'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:46 GMT'] + date: ['Fri, 16 Nov 2018 01:53:30 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -337,17 +309,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592737664292384?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:47 GMT'] + date: ['Fri, 16 Nov 2018 01:54:01 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -361,57 +335,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A01%3A56Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592737664292384?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['35596'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:57 GMT'] + date: ['Fri, 16 Nov 2018 01:54:31 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -421,70 +361,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A02%3A07Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592737664292384?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['54574'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:02:07 GMT'] + date: ['Fri, 16 Nov 2018 01:55:02 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -494,76 +387,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A02%3A17Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592737664292384?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"status":"Succeeded"}'} headers: cache-control: [no-cache] - content-length: ['62048'] + content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:02:17 GMT'] + date: ['Fri, 16 Nov 2018 01:55:31 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -573,17 +413,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: - body: {string: '{"status":"Running"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_VBuMAaZohvD3ubHFx7ArDqHm2iZczR7o","name":"vmss_deploy_VBuMAaZohvD3ubHFx7ArDqHm2iZczR7o","properties":{"templateHash":"18052990544446072603","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-16T01:55:02.3389048Z","duration":"PT3M3.2905055S","correlationId":"9d735351-66df-44be-abca-ffa8fc0e68ef","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"clite2cbf","adminUsername":"tosin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/tosin/.ssh/authorized_keys","keyData":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"diffDiskSettings":{"option":"Local"},"createOption":"FromImage","caching":"ReadOnly","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"},"dataDisks":[{"lun":0,"createOption":"Empty","caching":"None","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":1}]},"networkProfile":{"networkInterfaceConfigurations":[{"name":"clite2cbfNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clite2cbfIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":false,"uniqueId":"928aa880-8d25-47ff-9996-52ef1d5e9114"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"}]}}'} headers: cache-control: [no-cache] - content-length: ['20'] + content-length: ['6232'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:02:18 GMT'] + date: ['Fri, 16 Nov 2018 01:55:31 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -595,83 +438,65 @@ interactions: headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] + CommandName: [vmss show] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [-g -n] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A02%3A28Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1?api-version=2018-10-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: "{\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ + \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ + : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ + \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ + \n \"osProfile\": {\r\n \"computerNamePrefix\": \"clite2cbf\"\ + ,\r\n \"adminUsername\": \"tosin\",\r\n \"linuxConfiguration\"\ + : {\r\n \"disablePasswordAuthentication\": true,\r\n \"\ + ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ + \ \"path\": \"/home/tosin/.ssh/authorized_keys\",\r\n \ + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/\"\ + \r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\"\ + : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ + : true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\ + \n \"diffDiskSettings\": {\r\n \"option\": \"Local\"\r\ + \n },\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\ + \n \"imageReference\": {\r\n \"publisher\": \"Canonical\"\ + ,\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\"\ + ,\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"createOption\"\ + : \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\"\ + : {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n \ + \ },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n \ + \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"\ + name\":\"clite2cbfNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ + :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ + ipConfigurations\":[{\"name\":\"clite2cbfIPConfig\",\"properties\":{\"subnet\"\ + :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ + },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ + :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\"\ + }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"\ + }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ + overprovision\": false,\r\n \"uniqueId\": \"928aa880-8d25-47ff-9996-52ef1d5e9114\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1\"\ + ,\r\n \"name\": \"cli-test-vmss-local-1\"\r\n}"} headers: cache-control: [no-cache] - content-length: ['65747'] + content-length: ['3576'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:02:28 GMT'] + date: ['Fri, 16 Nov 2018 01:55:33 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;187,Microsoft.Compute/GetVMScaleSet30Min;1235'] status: {code: 200, message: OK} - request: body: null @@ -681,104 +506,96 @@ interactions: CommandName: [vmss create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A02%3A38Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-16T01:51:55Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] - content-length: ['65747'] + content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:02:39 GMT'] + date: ['Fri, 16 Nov 2018 01:55:33 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: body: null headers: - Accept: [application/json] + Accept: ['*/*'] Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + User-Agent: [python-requests/2.19.1] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json response: - body: {string: '{"status":"Running"}'} + body: {string: "{\n \"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\"\ + ,\n \"contentVersion\":\"1.0.0.0\",\n \"parameters\":{},\n \"variables\"\ + :{},\n \"resources\":[],\n\n \"outputs\":{\n \"aliases\":{\n \"\ + type\":\"object\",\n \"value\":{\n\n \"Linux\":{\n \"\ + CentOS\":{\n \"publisher\":\"OpenLogic\",\n \"offer\"\ + :\"CentOS\",\n \"sku\":\"7.3\",\n \"version\":\"latest\"\ + \n },\n \"CoreOS\":{\n \"publisher\":\"CoreOS\"\ + ,\n \"offer\":\"CoreOS\",\n \"sku\":\"Stable\",\n \ + \ \"version\":\"latest\"\n },\n \"Debian\":{\n\ + \ \"publisher\":\"credativ\",\n \"offer\":\"Debian\"\ + ,\n \"sku\":\"8\",\n \"version\":\"latest\"\n \ + \ },\n \"openSUSE-Leap\": {\n \"publisher\":\"SUSE\"\ + ,\n \"offer\":\"openSUSE-Leap\",\n \"sku\":\"42.3\"\ + ,\n \"version\": \"latest\"\n },\n \"RHEL\":{\n\ + \ \"publisher\":\"RedHat\",\n \"offer\":\"RHEL\",\n\ + \ \"sku\":\"7.3\",\n \"version\":\"latest\"\n \ + \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \ + \ \"offer\":\"SLES\",\n \"sku\":\"12-SP2\",\n \ + \ \"version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \ + \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\"\ + ,\n \"sku\":\"16.04-LTS\",\n \"version\":\"latest\"\n\ + \ }\n },\n\n \"Windows\":{\n \"Win2016Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2016-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\n \"Win2012R2Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2012-R2-Datacenter\",\n\ + \ \"version\":\"latest\"\n },\n \"Win2012Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2012-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\n \"Win2008R2SP1\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2008-R2-SP1\",\n \ + \ \"version\":\"latest\"\n }\n }\n }\n }\n }\n\ + }\n"} headers: - cache-control: [no-cache] - content-length: ['20'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:02:48 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] + accept-ranges: [bytes] + access-control-allow-origin: ['*'] + cache-control: [max-age=300] + connection: [keep-alive] + content-length: ['2235'] + content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] + content-type: [text/plain; charset=utf-8] + date: ['Fri, 16 Nov 2018 01:55:34 GMT'] + etag: ['"60d07919b4224266adafb81340896eea100dc887"'] + expires: ['Fri, 16 Nov 2018 02:00:34 GMT'] + source-age: ['0'] + strict-transport-security: [max-age=31536000] + vary: ['Authorization,Accept-Encoding'] + via: [1.1 varnish] + x-cache: [MISS] + x-cache-hits: ['0'] x-content-type-options: [nosniff] + x-fastly-request-id: [ae546029392cad60ffee3e3230667ce4a2378e2e] + x-frame-options: [deny] + x-geo-block-list: [''] + x-github-request-id: ['4550:2A94:15A86:177EF:5BEE2395'] + x-served-by: [cache-dfw18642-DFW] + x-timer: ['S1542333334.393810,VS0,VE70'] + x-xss-protection: [1; mode=block] status: {code: 200, message: OK} - request: body: null @@ -787,177 +604,113 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A02%3A49Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli-test-vmss-local-1VNET\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\"\ + ,\r\n \"etag\": \"W/\\\"e778f77c-3201-4d41-b684-6056f0c5eec5\\\"\",\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ + : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3472218c-df4b-40d3-86be-f3a444204e73\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \ + \ \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\"\ + : [\r\n {\r\n \"name\": \"cli-test-vmss-local-1Subnet\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ + ,\r\n \"etag\": \"W/\\\"e778f77c-3201-4d41-b684-6056f0c5eec5\\\"\ + \",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n\ + \ \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6\"\ + \r\n },\r\n \"ipConfigurations\": [\r\n \ + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/virtualMachines/0/networkInterfaces/clite2cbfNic/ipConfigurations/clite2cbfIPConfig\"\ + \r\n },\r\n {\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/virtualMachines/1/networkInterfaces/clite2cbfNic/ipConfigurations/clite2cbfIPConfig\"\ + \r\n }\r\n ]\r\n },\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\ + \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n\ + \ ]\r\n}"} headers: cache-control: [no-cache] - content-length: ['69446'] + content-length: ['2520'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:02:49 GMT'] + date: ['Fri, 16 Nov 2018 01:55:34 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: - body: null + body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"apiVersion": "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", + "name": "cli-test-vmss-local-2LBPublicIP", "location": "westus", "tags": {}, + "dependsOn": [], "properties": {"publicIPAllocationMethod": "Dynamic"}}, {"type": + "Microsoft.Network/loadBalancers", "name": "cli-test-vmss-local-2LB", "location": + "westus", "tags": {}, "apiVersion": "2018-01-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/cli-test-vmss-local-2LBPublicIP"], + "properties": {"backendAddressPools": [{"name": "cli-test-vmss-local-2LBBEPool"}], + "inboundNatPools": [{"name": "cli-test-vmss-local-2LBNatPool", "properties": + {"frontendIPConfiguration": {"id": "[concat(resourceId(\''Microsoft.Network/loadBalancers\'', + \''cli-test-vmss-local-2LB\''), \''/frontendIPConfigurations/\'', \''loadBalancerFrontEnd\'')]"}, + "protocol": "tcp", "frontendPortRangeStart": "50000", "frontendPortRangeEnd": + "50119", "backendPort": 22}}], "frontendIPConfigurations": [{"name": "loadBalancerFrontEnd", + "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"}}}]}}, + {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "cli-test-vmss-local-2", + "location": "westus", "tags": {}, "apiVersion": "2018-10-01", "dependsOn": ["Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"], + "sku": {"name": "Standard_DS1_v2", "capacity": 2}, "properties": {"overprovision": + false, "upgradePolicy": {"mode": "manual"}, "virtualMachineProfile": {"storageProfile": + {"osDisk": {"createOption": "FromImage", "caching": "ReadOnly", "managedDisk": + {"storageAccountType": null}, "diffDiskSettings": {"option": "Local"}}, "imageReference": + {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "16.04-LTS", "version": + "latest"}}, "osProfile": {"computerNamePrefix": "clite8259", "adminUsername": + "tosin", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": + {"publicKeys": [{"path": "/home/tosin/.ssh/authorized_keys", "keyData": "ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]}}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "clite8259Nic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "clite8259IPConfig", + "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"}, + "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool"}], + "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool"}]}}]}}]}}, + "singlePlacementGroup": null}}], "outputs": {"VMSS": {"type": "object", "value": + "[reference(resourceId(\''Microsoft.Compute/virtualMachineScaleSets\'', \''cli-test-vmss-local-2\''),providers(\''Microsoft.Compute\'', + \''virtualMachineScaleSets\'').apiVersions[0])]"}}}, "parameters": {}, "mode": + "Incremental"}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] + Content-Length: ['4054'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A03%3A00Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_VH2vmrkRlF8uZZCDr5ysiGOOWR45gJlc","name":"vmss_deploy_VH2vmrkRlF8uZZCDr5ysiGOOWR45gJlc","properties":{"templateHash":"8004976054211037407","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-16T01:55:37.7750241Z","duration":"PT1.071439S","correlationId":"9ff8321b-a879-4239-9dc5-64f4af0bb0a9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-2"}]}}'} headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_VH2vmrkRlF8uZZCDr5ysiGOOWR45gJlc/operationStatuses/08586592735487740303?api-version=2018-05-01'] cache-control: [no-cache] - content-length: ['73145'] + content-length: ['2152'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:00 GMT'] + date: ['Fri, 16 Nov 2018 01:55:37 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] 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} + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 201, message: Created} - request: body: null headers: @@ -965,88 +718,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A03%3A10Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592735487740303?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['73145'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:11 GMT'] + date: ['Fri, 16 Nov 2018 01:56:07 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -1056,17 +744,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592735487740303?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:18 GMT'] + date: ['Fri, 16 Nov 2018 01:56:38 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1080,92 +770,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A03%3A21Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592735487740303?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['76844'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:21 GMT'] + date: ['Fri, 16 Nov 2018 01:57:08 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -1175,1590 +796,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A03%3A31Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592735487740303?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['76844'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:32 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A03%3A42Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"bf1ba453-d39c-40bb-a999-c4c8ee212664","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/bf1ba453-d39c-40bb-a999-c4c8ee212664/ticks/636774122053504504","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f292ea7a-dafe-4a88-866b-bddcbb066e3e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:25.3504504Z","submissionTimestamp":"2018-11-10T02:03:42.1082775Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6b28ffdc-72bc-40d2-8e34-734bcbce429e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/6b28ffdc-72bc-40d2-8e34-734bcbce429e/ticks/636774121902564338","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"4e8911b8-1b12-4252-8139-250e6c2a33a5","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:10.2564338Z","submissionTimestamp":"2018-11-10T02:03:32.0892745Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['84242'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:43 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 - response: - body: {string: '{"status":"Running"}'} - headers: - cache-control: [no-cache] - content-length: ['20'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:49 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A03%3A53Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"bf1ba453-d39c-40bb-a999-c4c8ee212664","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/bf1ba453-d39c-40bb-a999-c4c8ee212664/ticks/636774122053504504","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f292ea7a-dafe-4a88-866b-bddcbb066e3e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:25.3504504Z","submissionTimestamp":"2018-11-10T02:03:42.1082775Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6b28ffdc-72bc-40d2-8e34-734bcbce429e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/6b28ffdc-72bc-40d2-8e34-734bcbce429e/ticks/636774121902564338","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"4e8911b8-1b12-4252-8139-250e6c2a33a5","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:10.2564338Z","submissionTimestamp":"2018-11-10T02:03:32.0892745Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['84242'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:53 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A04%3A04Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"bf1ba453-d39c-40bb-a999-c4c8ee212664","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/bf1ba453-d39c-40bb-a999-c4c8ee212664/ticks/636774122053504504","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f292ea7a-dafe-4a88-866b-bddcbb066e3e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:25.3504504Z","submissionTimestamp":"2018-11-10T02:03:42.1082775Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6b28ffdc-72bc-40d2-8e34-734bcbce429e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/6b28ffdc-72bc-40d2-8e34-734bcbce429e/ticks/636774121902564338","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"4e8911b8-1b12-4252-8139-250e6c2a33a5","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:10.2564338Z","submissionTimestamp":"2018-11-10T02:03:32.0892745Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['84242'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:04 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A04%3A15Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"bf1ba453-d39c-40bb-a999-c4c8ee212664","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/bf1ba453-d39c-40bb-a999-c4c8ee212664/ticks/636774122053504504","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f292ea7a-dafe-4a88-866b-bddcbb066e3e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:25.3504504Z","submissionTimestamp":"2018-11-10T02:03:42.1082775Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6b28ffdc-72bc-40d2-8e34-734bcbce429e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/6b28ffdc-72bc-40d2-8e34-734bcbce429e/ticks/636774121902564338","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"4e8911b8-1b12-4252-8139-250e6c2a33a5","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:10.2564338Z","submissionTimestamp":"2018-11-10T02:03:32.0892745Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['84242'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:16 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 - response: - body: {string: '{"status":"Succeeded"}'} - headers: - cache-control: [no-cache] - content-length: ['22'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:20 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","name":"vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","properties":{"templateHash":"6043111070468457383","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-10T02:04:06.5459884Z","duration":"PT2M50.1992411S","correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"clitec15e","adminUsername":"tosin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/tosin/.ssh/authorized_keys","keyData":"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"diffDiskSettings":{"option":"Local"},"createOption":"FromImage","caching":"ReadOnly","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"},"dataDisks":[{"lun":0,"createOption":"Empty","caching":"None","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":1}]},"networkProfile":{"networkInterfaceConfigurations":[{"name":"clitec15eNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clitec15eIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":false,"uniqueId":"24d61316-cbd1-415b-bb7d-bac7bb6a06c9"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"}]}}'} - headers: - cache-control: [no-cache] - content-length: ['6232'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:20 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss show] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1?api-version=2018-10-01 - response: - body: {string: "{\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ - : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ - \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ - \n \"osProfile\": {\r\n \"computerNamePrefix\": \"clitec15e\"\ - ,\r\n \"adminUsername\": \"tosin\",\r\n \"linuxConfiguration\"\ - : {\r\n \"disablePasswordAuthentication\": true,\r\n \"\ - ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ - \ \"path\": \"/home/tosin/.ssh/authorized_keys\",\r\n \ - \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/\"\ - \r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\"\ - : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ - : true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\ - \n \"diffDiskSettings\": {\r\n \"option\": \"Local\"\r\ - \n },\r\n \"createOption\": \"FromImage\",\r\n \ - \ \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \ - \ \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\ - \n \"imageReference\": {\r\n \"publisher\": \"Canonical\"\ - ,\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\"\ - ,\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"createOption\"\ - : \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\"\ - : {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n \ - \ },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n \ - \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"\ - name\":\"clitec15eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ - :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ - ipConfigurations\":[{\"name\":\"clitec15eIPConfig\",\"properties\":{\"subnet\"\ - :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\"\ - }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"\ - }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"24d61316-cbd1-415b-bb7d-bac7bb6a06c9\"\ - \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1\"\ - ,\r\n \"name\": \"cli-test-vmss-local-1\"\r\n}"} - headers: - cache-control: [no-cache] - content-length: ['3576'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:20 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;190,Microsoft.Compute/GetVMScaleSet30Min;1286'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001?api-version=2018-05-01 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-10T02:01:09Z"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['384'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:21 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.20.0] - method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json - response: - body: {string: "{\n \"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\"\ - ,\n \"contentVersion\":\"1.0.0.0\",\n \"parameters\":{},\n \"variables\"\ - :{},\n \"resources\":[],\n\n \"outputs\":{\n \"aliases\":{\n \"\ - type\":\"object\",\n \"value\":{\n\n \"Linux\":{\n \"\ - CentOS\":{\n \"publisher\":\"OpenLogic\",\n \"offer\"\ - :\"CentOS\",\n \"sku\":\"7.3\",\n \"version\":\"latest\"\ - \n },\n \"CoreOS\":{\n \"publisher\":\"CoreOS\"\ - ,\n \"offer\":\"CoreOS\",\n \"sku\":\"Stable\",\n \ - \ \"version\":\"latest\"\n },\n \"Debian\":{\n\ - \ \"publisher\":\"credativ\",\n \"offer\":\"Debian\"\ - ,\n \"sku\":\"8\",\n \"version\":\"latest\"\n \ - \ },\n \"openSUSE-Leap\": {\n \"publisher\":\"SUSE\"\ - ,\n \"offer\":\"openSUSE-Leap\",\n \"sku\":\"42.3\"\ - ,\n \"version\": \"latest\"\n },\n \"RHEL\":{\n\ - \ \"publisher\":\"RedHat\",\n \"offer\":\"RHEL\",\n\ - \ \"sku\":\"7.3\",\n \"version\":\"latest\"\n \ - \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \ - \ \"offer\":\"SLES\",\n \"sku\":\"12-SP2\",\n \ - \ \"version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \ - \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\"\ - ,\n \"sku\":\"16.04-LTS\",\n \"version\":\"latest\"\n\ - \ }\n },\n\n \"Windows\":{\n \"Win2016Datacenter\"\ - :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ - offer\":\"WindowsServer\",\n \"sku\":\"2016-Datacenter\",\n \ - \ \"version\":\"latest\"\n },\n \"Win2012R2Datacenter\"\ - :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ - offer\":\"WindowsServer\",\n \"sku\":\"2012-R2-Datacenter\",\n\ - \ \"version\":\"latest\"\n },\n \"Win2012Datacenter\"\ - :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ - offer\":\"WindowsServer\",\n \"sku\":\"2012-Datacenter\",\n \ - \ \"version\":\"latest\"\n },\n \"Win2008R2SP1\"\ - :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ - offer\":\"WindowsServer\",\n \"sku\":\"2008-R2-SP1\",\n \ - \ \"version\":\"latest\"\n }\n }\n }\n }\n }\n\ - }\n"} - headers: - accept-ranges: [bytes] - access-control-allow-origin: ['*'] - cache-control: [max-age=300] - connection: [keep-alive] - content-length: ['2235'] - content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] - content-type: [text/plain; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:22 GMT'] - etag: ['"60d07919b4224266adafb81340896eea100dc887"'] - expires: ['Sat, 10 Nov 2018 02:09:22 GMT'] - source-age: ['0'] - strict-transport-security: [max-age=31536000] - vary: ['Authorization,Accept-Encoding'] - via: [1.1 varnish] - x-cache: [MISS] - x-cache-hits: ['0'] - x-content-type-options: [nosniff] - x-fastly-request-id: [af07660529ebcfa60958b4416d88d24947d8651b] - x-frame-options: [deny] - x-geo-block-list: [''] - x-github-request-id: ['7A20:0B97:23CCE04:256ABC5:5BE63CA6'] - x-served-by: [cache-sea1026-SEA] - x-timer: ['S1541815462.441210,VS0,VE96'] - x-xss-protection: [1; mode=block] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 - response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli-test-vmss-local-1VNET\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\"\ - ,\r\n \"etag\": \"W/\\\"902e0dba-83c7-4bf5-9677-8cb711c0d12d\\\"\",\r\ - \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \ - \ \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\"\ - : [\r\n {\r\n \"name\": \"cli-test-vmss-local-1Subnet\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ - ,\r\n \"etag\": \"W/\\\"902e0dba-83c7-4bf5-9677-8cb711c0d12d\\\"\ - \",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n\ - \ \"ipConfigurations\": [\r\n {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/virtualMachines/0/networkInterfaces/clitec15eNic/ipConfigurations/clitec15eIPConfig\"\ - \r\n },\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/virtualMachines/1/networkInterfaces/clitec15eNic/ipConfigurations/clitec15eIPConfig\"\ - \r\n }\r\n ]\r\n },\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\ - \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ - : false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n\ - \ ]\r\n}"} - headers: - cache-control: [no-cache] - content-length: ['2281'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:22 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": - [{"apiVersion": "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", - "name": "cli-test-vmss-local-2LBPublicIP", "location": "westus", "tags": {}, - "dependsOn": [], "properties": {"publicIPAllocationMethod": "Dynamic"}}, {"type": - "Microsoft.Network/loadBalancers", "name": "cli-test-vmss-local-2LB", "location": - "westus", "tags": {}, "apiVersion": "2018-01-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/cli-test-vmss-local-2LBPublicIP"], - "properties": {"backendAddressPools": [{"name": "cli-test-vmss-local-2LBBEPool"}], - "inboundNatPools": [{"name": "cli-test-vmss-local-2LBNatPool", "properties": - {"frontendIPConfiguration": {"id": "[concat(resourceId(\''Microsoft.Network/loadBalancers\'', - \''cli-test-vmss-local-2LB\''), \''/frontendIPConfigurations/\'', \''loadBalancerFrontEnd\'')]"}, - "protocol": "tcp", "frontendPortRangeStart": "50000", "frontendPortRangeEnd": - "50119", "backendPort": 22}}], "frontendIPConfigurations": [{"name": "loadBalancerFrontEnd", - "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"}}}]}}, - {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "cli-test-vmss-local-2", - "location": "westus", "tags": {}, "apiVersion": "2018-10-01", "dependsOn": ["Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"], - "sku": {"name": "Standard_DS1_v2", "capacity": 2}, "properties": {"overprovision": - false, "upgradePolicy": {"mode": "manual"}, "virtualMachineProfile": {"storageProfile": - {"osDisk": {"createOption": "FromImage", "caching": "ReadOnly", "managedDisk": - {"storageAccountType": null}, "diffDiskSettings": {"option": "Local"}}, "imageReference": - {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "16.04-LTS", "version": - "latest"}}, "osProfile": {"computerNamePrefix": "clite7c20", "adminUsername": - "tosin", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/tosin/.ssh/authorized_keys", "keyData": "ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "clite7c20Nic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "clite7c20IPConfig", - "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"}, - "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool"}], - "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool"}]}}]}}]}}, - "singlePlacementGroup": null}}], "outputs": {"VMSS": {"type": "object", "value": - "[reference(resourceId(\''Microsoft.Compute/virtualMachineScaleSets\'', \''cli-test-vmss-local-2\''),providers(\''Microsoft.Compute\'', - \''virtualMachineScaleSets\'').apiVersions[0])]"}}}, "parameters": {}, "mode": - "Incremental"}}''' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Length: ['4054'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","name":"vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","properties":{"templateHash":"15214464966890777813","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-10T02:04:25.7550153Z","duration":"PT1.0631667S","correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-2"}]}}'} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/operationStatuses/08586597914207857749?api-version=2018-05-01'] - cache-control: [no-cache] - content-length: ['2154'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:25 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A04%3A34Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[]}'} - headers: - cache-control: [no-cache] - content-length: ['12'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:34 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A04%3A44Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['3847'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:44 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A04%3A55Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['11358'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:55 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 - response: - body: {string: '{"status":"Running"}'} - headers: - cache-control: [no-cache] - content-length: ['20'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:56 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A05%3A06Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['31224'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:05:05 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A05%3A16Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['46013'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:05:16 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 - response: - body: {string: '{"status":"Running"}'} - headers: - cache-control: [no-cache] - content-length: ['20'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:05:26 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A05%3A27Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['46013'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:05:27 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A05%3A38Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['49712'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:05:38 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A05%3A49Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['53410'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:05:49 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 - response: - body: {string: '{"status":"Running"}'} - headers: - cache-control: [no-cache] - content-length: ['20'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:05:56 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A06%3A00Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['53410'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:00 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A06%3A10Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['57109'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:10 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A06%3A21Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['57109'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:21 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 - response: - body: {string: '{"status":"Running"}'} - headers: - cache-control: [no-cache] - content-length: ['20'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:27 GMT'] + date: ['Fri, 16 Nov 2018 01:57:38 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -2772,260 +822,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A06%3A31Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce879b8f-5514-4da1-a357-52907be5c9c7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/ce879b8f-5514-4da1-a357-52907be5c9c7/ticks/636774123597274431","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"045bbf08-99ef-4f70-8fb6-bf78dd5ab41e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:59.7274431Z","submissionTimestamp":"2018-11-10T02:06:25.0865197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['60808'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:32 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A06%3A42Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce879b8f-5514-4da1-a357-52907be5c9c7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/ce879b8f-5514-4da1-a357-52907be5c9c7/ticks/636774123597274431","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"045bbf08-99ef-4f70-8fb6-bf78dd5ab41e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:59.7274431Z","submissionTimestamp":"2018-11-10T02:06:25.0865197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['60808'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:42 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A06%3A53Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce879b8f-5514-4da1-a357-52907be5c9c7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/ce879b8f-5514-4da1-a357-52907be5c9c7/ticks/636774123597274431","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"045bbf08-99ef-4f70-8fb6-bf78dd5ab41e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:59.7274431Z","submissionTimestamp":"2018-11-10T02:06:25.0865197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['60808'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:53 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592735487740303?api-version=2018-05-01 response: body: {string: '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:57 GMT'] + date: ['Fri, 16 Nov 2018 01:58:09 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -3039,18 +848,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","name":"vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","properties":{"templateHash":"15214464966890777813","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-10T02:06:41.7836953Z","duration":"PT2M17.0918467S","correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"clite7c20","adminUsername":"tosin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/tosin/.ssh/authorized_keys","keyData":"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"diffDiskSettings":{"option":"Local"},"createOption":"FromImage","caching":"ReadOnly","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"clite7c20Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clite7c20IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":false,"uniqueId":"6ac3f0ef-7874-47ba-83f0-96f05a94c146"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"}]}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_VH2vmrkRlF8uZZCDr5ysiGOOWR45gJlc","name":"vmss_deploy_VH2vmrkRlF8uZZCDr5ysiGOOWR45gJlc","properties":{"templateHash":"8004976054211037407","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-16T01:57:54.0159671Z","duration":"PT2M17.312382S","correlationId":"9ff8321b-a879-4239-9dc5-64f4af0bb0a9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"clite8259","adminUsername":"tosin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/tosin/.ssh/authorized_keys","keyData":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"diffDiskSettings":{"option":"Local"},"createOption":"FromImage","caching":"ReadOnly","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"clite8259Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clite8259IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":false,"uniqueId":"dcf7aa2d-04e1-4725-9a71-b627020440ce"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"}]}}'} headers: cache-control: [no-cache] - content-length: ['5191'] + content-length: ['5189'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:58 GMT'] + date: ['Fri, 16 Nov 2018 01:58:09 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -3064,7 +875,8 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss show] Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + ParameterSetName: [-g -n] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET @@ -3074,7 +886,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ - \n \"osProfile\": {\r\n \"computerNamePrefix\": \"clite7c20\"\ + \n \"osProfile\": {\r\n \"computerNamePrefix\": \"clite8259\"\ ,\r\n \"adminUsername\": \"tosin\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": true,\r\n \"\ ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ @@ -3090,15 +902,15 @@ interactions: \n \"imageReference\": {\r\n \"publisher\": \"Canonical\"\ ,\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\"\ ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clite7c20Nic\"\ + networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clite8259Nic\"\ ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"clite7c20IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ + :[{\"name\":\"clite8259IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\"\ }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"\ }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"6ac3f0ef-7874-47ba-83f0-96f05a94c146\"\ + overprovision\": false,\r\n \"uniqueId\": \"dcf7aa2d-04e1-4725-9a71-b627020440ce\"\ \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2\"\ ,\r\n \"name\": \"cli-test-vmss-local-2\"\r\n}"} @@ -3106,7 +918,7 @@ interactions: cache-control: [no-cache] content-length: ['3295'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:07:00 GMT'] + date: ['Fri, 16 Nov 2018 01:58:11 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -3114,7 +926,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;190,Microsoft.Compute/GetVMScaleSet30Min;1276'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;185,Microsoft.Compute/GetVMScaleSet30Min;1221'] status: {code: 200, message: OK} - request: body: null @@ -3125,7 +937,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + ParameterSetName: [--name --yes --no-wait] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: DELETE @@ -3135,9 +948,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Sat, 10 Nov 2018 02:07:01 GMT'] + date: ['Fri, 16 Nov 2018 01:58:12 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk1TUzo1RkNSRUFURTo1RkVQSEVNRVJBTDo1Rk9TOjVGRHxDMzc2NjhFOTEwMTA2MDk3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk1TUzo1RkNSRUFURTo1RkVQSEVNRVJBTDo1Rk9TOjVGRHxFMzc3MEQzNjdBMjgyNjM4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_options.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_options.yaml index 9bea52f8538..6c68f558dee 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_options.yaml +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_options.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-09-28T22:49:12Z"}}' + "date": "2018-11-16T01:58:12Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--location --name --tag] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001","name":"cli_test_vmss_create_options000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-09-28T22:49:12Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001","name":"cli_test_vmss_create_options000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-16T01:58:12Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:15 GMT'] + date: ['Fri, 16 Nov 2018 01:58:13 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -36,19 +36,19 @@ interactions: CommandName: [network public-ip create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--name -g] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001","name":"cli_test_vmss_create_options000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-09-28T22:49:12Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001","name":"cli_test_vmss_create_options000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-16T01:58:12Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:16 GMT'] + date: ['Fri, 16 Nov 2018 01:58:13 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -65,33 +65,33 @@ interactions: Connection: [keep-alive] Content-Length: ['164'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 networkmanagementclient/2.2.1 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--name -g] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip?api-version=2018-08-01 response: body: {string: "{\r\n \"name\": \"vrfpubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"\ - ,\r\n \"etag\": \"W/\\\"e5e34afd-bfb3-4807-8c1f-cfb7827d603f\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"01a3894f-35b1-450e-a7bf-30ab21e1b309\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Updating\",\r\n \"resourceGuid\": \"feec863e-ee10-4d8d-9eae-03fa16b19c0f\"\ + : \"Updating\",\r\n \"resourceGuid\": \"6c2f237c-34d7-4bea-96c8-8bd930a68273\"\ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\ \n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\"\ : {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4d8b94a2-a128-473d-916e-bd71a0f3b7bb?api-version=2018-08-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/edc7d707-2c3b-47fd-9559-20295b9020fe?api-version=2018-08-01'] cache-control: [no-cache] content-length: ['689'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:17 GMT'] + date: ['Fri, 16 Nov 2018 01:58:15 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 201, message: Created} - request: body: null @@ -100,18 +100,18 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [network public-ip create] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 networkmanagementclient/2.2.1 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--name -g] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4d8b94a2-a128-473d-916e-bd71a0f3b7bb?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/edc7d707-2c3b-47fd-9559-20295b9020fe?api-version=2018-08-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:22 GMT'] + date: ['Fri, 16 Nov 2018 01:58:16 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -127,16 +127,16 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [network public-ip create] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 networkmanagementclient/2.2.1 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--name -g] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip?api-version=2018-08-01 response: body: {string: "{\r\n \"name\": \"vrfpubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"\ - ,\r\n \"etag\": \"W/\\\"1cb2e1a3-4956-4ace-a3c5-1f9e7146b906\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"b03576ec-12e9-49d3-8333-92fd7e812381\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"feec863e-ee10-4d8d-9eae-03fa16b19c0f\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6c2f237c-34d7-4bea-96c8-8bd930a68273\"\ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\ \n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\"\ @@ -145,8 +145,8 @@ interactions: cache-control: [no-cache] content-length: ['690'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:22 GMT'] - etag: [W/"1cb2e1a3-4956-4ace-a3c5-1f9e7146b906"] + date: ['Fri, 16 Nov 2018 01:58:16 GMT'] + etag: [W/"b03576ec-12e9-49d3-8333-92fd7e812381"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -208,22 +208,22 @@ interactions: content-length: ['2235'] content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] content-type: [text/plain; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:24 GMT'] + date: ['Fri, 16 Nov 2018 01:58:17 GMT'] etag: ['"60d07919b4224266adafb81340896eea100dc887"'] - expires: ['Fri, 28 Sep 2018 22:54:24 GMT'] - source-age: ['38'] + expires: ['Fri, 16 Nov 2018 02:03:17 GMT'] + source-age: ['259'] strict-transport-security: [max-age=31536000] vary: ['Authorization,Accept-Encoding'] via: [1.1 varnish] x-cache: [HIT] x-cache-hits: ['1'] x-content-type-options: [nosniff] - x-fastly-request-id: [55e5f68bd01200bce0e3a178b5fc6858a7a011da] + x-fastly-request-id: [a1a3ce4912069b6cf3847688850d63d58103a20d] x-frame-options: [deny] x-geo-block-list: [''] - x-github-request-id: ['80CA:0178:257225:291D3E:5BAEAFCE'] - x-served-by: [cache-dfw18628-DFW] - x-timer: ['S1538174964.302913,VS0,VE0'] + x-github-request-id: ['FE56:6497:D3AE7:DE0D5:5BEE2335'] + x-served-by: [cache-pao17429-PAO] + x-timer: ['S1542333498.520252,VS0,VE0'] x-xss-protection: [1; mode=block] status: {code: 200, message: OK} - request: @@ -233,9 +233,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 networkmanagementclient/2.2.1 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--image --admin-password -l -g -n --disable-overprovision + --instance-count --os-disk-caching --upgrade-policy-mode --authentication-type + --admin-username --public-ip-address --data-disk-sizes-gb --vm-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 @@ -245,7 +247,7 @@ interactions: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:24 GMT'] + date: ['Fri, 16 Nov 2018 01:58:16 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -260,9 +262,11 @@ interactions: CommandName: [vmss create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--image --admin-password -l -g -n --disable-overprovision + --instance-count --os-disk-caching --upgrade-policy-mode --authentication-type + --admin-username --public-ip-address --data-disk-sizes-gb --vm-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2018-05-01 @@ -468,8 +472,8 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2016-04-01"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2017-09-01"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-04-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-04-01"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-04-01"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-04-01"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-04-01"},{"resourceType":"expressRouteCircuits","locations":["West + CrossSubscriptionResourceMove"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2016-04-01"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2017-09-01"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01"},{"resourceType":"expressRouteCircuits","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -481,7 +485,35 @@ interactions: West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"defaultApiVersion":"2016-12-01","capabilities":"None"},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"azureFirewalls","locations":["West + US EUAP","East US 2 EUAP"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"defaultApiVersion":"2016-12-01","capabilities":"None"},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"virtualWans","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-09-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"vpnSites","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-09-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"virtualHubs","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-11-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"vpnGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-11-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"azureFirewalls","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada @@ -522,14 +554,19 @@ interactions: Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2018-08-01"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove"},{"resourceType":"locations/bareMetalTenants","locations":["West - Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-08-01","2018-07-01"]},{"resourceType":"secureGateways","locations":["Central + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-08-01","2018-07-01"]},{"resourceType":"secureGateways","locations":["Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01"],"defaultApiVersion":"2018-02-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove"}],"registrationState":"Registered"}'} headers: cache-control: [no-cache] - content-length: ['40618'] + content-length: ['44031'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:24 GMT'] + date: ['Fri, 16 Nov 2018 01:58:17 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -544,17 +581,19 @@ interactions: CommandName: [vmss create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--image --admin-password -l -g -n --disable-overprovision + --instance-count --os-disk-caching --upgrade-policy-mode --authentication-type + --admin-username --public-ip-address --data-disk-sizes-gb --vm-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip?api-version=2018-08-01 response: body: {string: "{\r\n \"name\": \"vrfpubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"\ - ,\r\n \"etag\": \"W/\\\"1cb2e1a3-4956-4ace-a3c5-1f9e7146b906\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"b03576ec-12e9-49d3-8333-92fd7e812381\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"feec863e-ee10-4d8d-9eae-03fa16b19c0f\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"6c2f237c-34d7-4bea-96c8-8bd930a68273\"\ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\ \n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\"\ @@ -563,8 +602,8 @@ interactions: cache-control: [no-cache] content-length: ['690'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:25 GMT'] - etag: [W/"1cb2e1a3-4956-4ace-a3c5-1f9e7146b906"] + date: ['Fri, 16 Nov 2018 01:58:18 GMT'] + etag: [W/"b03576ec-12e9-49d3-8333-92fd7e812381"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -580,9 +619,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--image --admin-password -l -g -n --disable-overprovision + --instance-count --os-disk-caching --upgrade-policy-mode --authentication-type + --admin-username --public-ip-address --data-disk-sizes-gb --vm-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/vmSizes?api-version=2018-10-01 @@ -1074,19 +1115,29 @@ interactions: : 64\r\n },\r\n {\r\n \"name\": \"Standard_H16mr\",\r\n \"\ numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ : 2048000,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\"\ - : 64\r\n },\r\n {\r\n \"name\": \"Standard_F2s_v2\",\r\n \"\ - numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 16384,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\ - \n },\r\n {\r\n \"name\": \"Standard_F4s_v2\",\r\n \"numberOfCores\"\ - : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 32768,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\ - \n },\r\n {\r\n \"name\": \"Standard_F8s_v2\",\r\n \"numberOfCores\"\ - : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 65536,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\ - \n },\r\n {\r\n \"name\": \"Standard_F16s_v2\",\r\n \"numberOfCores\"\ - : 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 131072,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\ - \n },\r\n {\r\n \"name\": \"Standard_F32s_v2\",\r\n \"numberOfCores\"\ + : 64\r\n },\r\n {\r\n \"name\": \"Standard_NV6s_v2\",\r\n \ + \ \"numberOfCores\": 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ + resourceDiskSizeInMB\": 344064,\r\n \"memoryInMB\": 114688,\r\n \ + \ \"maxDataDiskCount\": 12\r\n },\r\n {\r\n \"name\": \"Standard_NV12s_v2\"\ + ,\r\n \"numberOfCores\": 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 688128,\r\n \"memoryInMB\": 229376,\r\ + \n \"maxDataDiskCount\": 24\r\n },\r\n {\r\n \"name\": \"\ + Standard_NV24s_v2\",\r\n \"numberOfCores\": 24,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 1376256,\r\n \"memoryInMB\"\ + : 458752,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_F2s_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\"\ + : 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\"\ + : \"Standard_F4s_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\"\ + : 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ + : \"Standard_F8s_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\"\ + : 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"\ + name\": \"Standard_F16s_v2\",\r\n \"numberOfCores\": 16,\r\n \"\ + osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n\ + \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_F32s_v2\",\r\n \"numberOfCores\"\ : 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ : 262144,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\ \n },\r\n {\r\n \"name\": \"Standard_F64s_v2\",\r\n \"numberOfCores\"\ @@ -1098,9 +1149,9 @@ interactions: \ \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}"} headers: cache-control: [no-cache] - content-length: ['34466'] + content-length: ['35098'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:26 GMT'] + date: ['Fri, 16 Nov 2018 01:58:18 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1136,9 +1187,9 @@ interactions: "imageReference": {"publisher": "credativ", "offer": "Debian", "sku": "8", "version": "latest"}, "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": null}, "createOption": "empty", "diskSizeGB": 1}]}, "osProfile": {"computerNamePrefix": - "vrfvme6e6", "adminUsername": "myadmin", "adminPassword": "[parameters(\''adminPassword\'')]"}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vrfvme6e6Nic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "vrfvme6e6IPConfig", + "vrfvmb7f8", "adminUsername": "myadmin", "adminPassword": "[parameters(\''adminPassword\'')]"}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vrfvmb7f8Nic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "vrfvmb7f8IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool"}]}}]}}]}}, @@ -1153,25 +1204,27 @@ interactions: Connection: [keep-alive] Content-Length: ['3678'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--image --admin-password -l -g -n --disable-overprovision + --instance-count --os-disk-caching --upgrade-policy-mode --authentication-type + --admin-username --public-ip-address --data-disk-sizes-gb --vm-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","name":"vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","properties":{"templateHash":"9707451972839664387","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-09-28T22:49:30.0811218Z","duration":"PT1.0823221S","correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vrfvmssVNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrfvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vrfvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrfvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vrfvmss"}]}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_Puryma18mirAa4VoLjYpgVIrLc0auECm","name":"vmss_deploy_Puryma18mirAa4VoLjYpgVIrLc0auECm","properties":{"templateHash":"10542471473615152131","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-16T01:58:21.1635036Z","duration":"PT0.8537873S","correlationId":"29444c1b-485c-4bb2-9208-63fd6ab265b7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vrfvmssVNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrfvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vrfvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrfvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vrfvmss"}]}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/operationStatuses/08586634319164788275?api-version=2018-05-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_Puryma18mirAa4VoLjYpgVIrLc0auECm/operationStatuses/08586592733851679061?api-version=2018-05-01'] cache-control: [no-cache] - content-length: ['2350'] + content-length: ['2351'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:29 GMT'] + date: ['Fri, 16 Nov 2018 01:58:21 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -1180,129 +1233,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A49%3A37Z%20and%20correlationId%20eq%20%279db6b95b-1784-48df-a22e-0ce21cfeb74b%27 - response: - body: {string: '{"value":[]}'} - headers: - cache-control: [no-cache] - content-length: ['12'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:37 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A49%3A48Z%20and%20correlationId%20eq%20%279db6b95b-1784-48df-a22e-0ce21cfeb74b%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b9a8b726-6cbb-4efe-97dc-9d36ffebcdce","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/b9a8b726-6cbb-4efe-97dc-9d36ffebcdce/ticks/636737717675474564","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:27.5474564Z","submissionTimestamp":"2018-09-28T22:49:45.1033659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['3733'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:47 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - accept-language: [en-US] + ParameterSetName: [--image --admin-password -l -g -n --disable-overprovision + --instance-count --os-disk-caching --upgrade-policy-mode --authentication-type + --admin-username --public-ip-address --data-disk-sizes-gb --vm-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-08-18T06%3A49%3A59Z%20and%20correlationId%20eq%20%279db6b95b-1784-48df-a22e-0ce21cfeb74b%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"47d26086-c667-42d1-a9d2-5958915096d4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/47d26086-c667-42d1-a9d2-5958915096d4/ticks/636737717777558046","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"34559270-a07b-47b5-b83f-70ef67631407","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:37.7558046Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"955c0429-be97-467f-a589-ce34fc2780be","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/955c0429-be97-467f-a589-ce34fc2780be/ticks/636737717745682027","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"64cd2a3c-e36e-48d4-99bf-b08e992e7cfe","responseBody":"{\"name\":\"vrfvmssVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"83a8d290-d3bb-4705-9312-b3964a8bc6a4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"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":"2018-09-28T22:49:34.5682027Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"5f90762d-0687-4265-a0c4-0d37c25aa881","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/5f90762d-0687-4265-a0c4-0d37c25aa881/ticks/636737717735056648","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:33.5056648Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"bcb97284-c57f-4600-8538-919bc1f7f124","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/bcb97284-c57f-4600-8538-919bc1f7f124/ticks/636737717702341700","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","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":"2018-09-28T22:49:30.23417Z","submissionTimestamp":"2018-09-28T22:49:55.0958417Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b9a8b726-6cbb-4efe-97dc-9d36ffebcdce","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/b9a8b726-6cbb-4efe-97dc-9d36ffebcdce/ticks/636737717675474564","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:27.5474564Z","submissionTimestamp":"2018-09-28T22:49:45.1033659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['19876'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:59 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586634319164788275?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592733851679061?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:49:59 GMT'] + date: ['Fri, 16 Nov 2018 01:58:52 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1316,133 +1260,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A50%3A09Z%20and%20correlationId%20eq%20%279db6b95b-1784-48df-a22e-0ce21cfeb74b%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"47d26086-c667-42d1-a9d2-5958915096d4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/47d26086-c667-42d1-a9d2-5958915096d4/ticks/636737717777558046","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"34559270-a07b-47b5-b83f-70ef67631407","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:37.7558046Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"955c0429-be97-467f-a589-ce34fc2780be","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/955c0429-be97-467f-a589-ce34fc2780be/ticks/636737717745682027","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"64cd2a3c-e36e-48d4-99bf-b08e992e7cfe","responseBody":"{\"name\":\"vrfvmssVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"83a8d290-d3bb-4705-9312-b3964a8bc6a4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"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":"2018-09-28T22:49:34.5682027Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"5f90762d-0687-4265-a0c4-0d37c25aa881","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/5f90762d-0687-4265-a0c4-0d37c25aa881/ticks/636737717735056648","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:33.5056648Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"bcb97284-c57f-4600-8538-919bc1f7f124","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/bcb97284-c57f-4600-8538-919bc1f7f124/ticks/636737717702341700","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","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":"2018-09-28T22:49:30.23417Z","submissionTimestamp":"2018-09-28T22:49:55.0958417Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b9a8b726-6cbb-4efe-97dc-9d36ffebcdce","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/b9a8b726-6cbb-4efe-97dc-9d36ffebcdce/ticks/636737717675474564","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:27.5474564Z","submissionTimestamp":"2018-09-28T22:49:45.1033659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['19876'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:50:10 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - accept-language: [en-US] + ParameterSetName: [--image --admin-password -l -g -n --disable-overprovision + --instance-count --os-disk-caching --upgrade-policy-mode --authentication-type + --admin-username --public-ip-address --data-disk-sizes-gb --vm-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-08-18T06%3A50%3A20Z%20and%20correlationId%20eq%20%279db6b95b-1784-48df-a22e-0ce21cfeb74b%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"051094a3-673b-4910-b821-e4fc8c0f22f8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/051094a3-673b-4910-b821-e4fc8c0f22f8/ticks/636737717971448530","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3a271bc6-a959-4fe3-a535-ca69be7f6a2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:57.144853Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"7d8fb7d7-608b-4f03-882b-fc96bf174c3b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/7d8fb7d7-608b-4f03-882b-fc96bf174c3b/ticks/636737717962229639","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:56.2229639Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e948073f-e0db-4b75-9fac-4f6cd8036ea6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/e948073f-e0db-4b75-9fac-4f6cd8036ea6/ticks/636737717925126093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"e73e4ab0-0f55-436a-bce9-a29228cadf9f","responseBody":"{\"name\":\"vrfvmssLB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae520ff6-fd2c-408c-8825-60ca62c21d14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:52.5126093Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b8946497-c197-4848-a404-2edb2a08ba10","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/b8946497-c197-4848-a404-2edb2a08ba10/ticks/636737717918094560","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:51.809456Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"6ca78a24-0de8-40af-8688-810f10524ac8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/6ca78a24-0de8-40af-8688-810f10524ac8/ticks/636737717909340704","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"51fe6901-cbad-426c-97bb-ba99113666f0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:50.9340704Z","submissionTimestamp":"2018-09-28T22:50:11.0785926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"47d26086-c667-42d1-a9d2-5958915096d4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/47d26086-c667-42d1-a9d2-5958915096d4/ticks/636737717777558046","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"34559270-a07b-47b5-b83f-70ef67631407","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:37.7558046Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"955c0429-be97-467f-a589-ce34fc2780be","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/955c0429-be97-467f-a589-ce34fc2780be/ticks/636737717745682027","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"64cd2a3c-e36e-48d4-99bf-b08e992e7cfe","responseBody":"{\"name\":\"vrfvmssVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"83a8d290-d3bb-4705-9312-b3964a8bc6a4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"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":"2018-09-28T22:49:34.5682027Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"5f90762d-0687-4265-a0c4-0d37c25aa881","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/5f90762d-0687-4265-a0c4-0d37c25aa881/ticks/636737717735056648","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:33.5056648Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"bcb97284-c57f-4600-8538-919bc1f7f124","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/bcb97284-c57f-4600-8538-919bc1f7f124/ticks/636737717702341700","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","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":"2018-09-28T22:49:30.23417Z","submissionTimestamp":"2018-09-28T22:49:55.0958417Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b9a8b726-6cbb-4efe-97dc-9d36ffebcdce","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/b9a8b726-6cbb-4efe-97dc-9d36ffebcdce/ticks/636737717675474564","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:27.5474564Z","submissionTimestamp":"2018-09-28T22:49:45.1033659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['42325'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:50:20 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586634319164788275?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592733851679061?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:50:30 GMT'] + date: ['Fri, 16 Nov 2018 01:59:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1456,224 +1287,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A50%3A31Z%20and%20correlationId%20eq%20%279db6b95b-1784-48df-a22e-0ce21cfeb74b%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"051094a3-673b-4910-b821-e4fc8c0f22f8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/051094a3-673b-4910-b821-e4fc8c0f22f8/ticks/636737717971448530","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3a271bc6-a959-4fe3-a535-ca69be7f6a2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:57.144853Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"7d8fb7d7-608b-4f03-882b-fc96bf174c3b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/7d8fb7d7-608b-4f03-882b-fc96bf174c3b/ticks/636737717962229639","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:56.2229639Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e948073f-e0db-4b75-9fac-4f6cd8036ea6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/e948073f-e0db-4b75-9fac-4f6cd8036ea6/ticks/636737717925126093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"e73e4ab0-0f55-436a-bce9-a29228cadf9f","responseBody":"{\"name\":\"vrfvmssLB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae520ff6-fd2c-408c-8825-60ca62c21d14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:52.5126093Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b8946497-c197-4848-a404-2edb2a08ba10","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/b8946497-c197-4848-a404-2edb2a08ba10/ticks/636737717918094560","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:51.809456Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"6ca78a24-0de8-40af-8688-810f10524ac8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/6ca78a24-0de8-40af-8688-810f10524ac8/ticks/636737717909340704","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"51fe6901-cbad-426c-97bb-ba99113666f0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:50.9340704Z","submissionTimestamp":"2018-09-28T22:50:11.0785926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"47d26086-c667-42d1-a9d2-5958915096d4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/47d26086-c667-42d1-a9d2-5958915096d4/ticks/636737717777558046","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"34559270-a07b-47b5-b83f-70ef67631407","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:37.7558046Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"955c0429-be97-467f-a589-ce34fc2780be","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/955c0429-be97-467f-a589-ce34fc2780be/ticks/636737717745682027","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"64cd2a3c-e36e-48d4-99bf-b08e992e7cfe","responseBody":"{\"name\":\"vrfvmssVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"83a8d290-d3bb-4705-9312-b3964a8bc6a4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"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":"2018-09-28T22:49:34.5682027Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"5f90762d-0687-4265-a0c4-0d37c25aa881","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/5f90762d-0687-4265-a0c4-0d37c25aa881/ticks/636737717735056648","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:33.5056648Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"bcb97284-c57f-4600-8538-919bc1f7f124","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/bcb97284-c57f-4600-8538-919bc1f7f124/ticks/636737717702341700","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","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":"2018-09-28T22:49:30.23417Z","submissionTimestamp":"2018-09-28T22:49:55.0958417Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b9a8b726-6cbb-4efe-97dc-9d36ffebcdce","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/b9a8b726-6cbb-4efe-97dc-9d36ffebcdce/ticks/636737717675474564","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:27.5474564Z","submissionTimestamp":"2018-09-28T22:49:45.1033659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['42325'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:50:31 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - accept-language: [en-US] + ParameterSetName: [--image --admin-password -l -g -n --disable-overprovision + --instance-count --os-disk-caching --upgrade-policy-mode --authentication-type + --admin-username --public-ip-address --data-disk-sizes-gb --vm-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-08-18T06%3A50%3A42Z%20and%20correlationId%20eq%20%279db6b95b-1784-48df-a22e-0ce21cfeb74b%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e5cdecf0-a2d6-4bf2-8260-93a9308eaae6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/e5cdecf0-a2d6-4bf2-8260-93a9308eaae6/ticks/636737718143227093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"62688fab-1397-44c1-b029-9dea6c947f3d","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:14.3227093Z","submissionTimestamp":"2018-09-28T22:50:39.0952675Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"051094a3-673b-4910-b821-e4fc8c0f22f8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/051094a3-673b-4910-b821-e4fc8c0f22f8/ticks/636737717971448530","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3a271bc6-a959-4fe3-a535-ca69be7f6a2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:57.144853Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"7d8fb7d7-608b-4f03-882b-fc96bf174c3b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/7d8fb7d7-608b-4f03-882b-fc96bf174c3b/ticks/636737717962229639","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:56.2229639Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e948073f-e0db-4b75-9fac-4f6cd8036ea6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/e948073f-e0db-4b75-9fac-4f6cd8036ea6/ticks/636737717925126093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"e73e4ab0-0f55-436a-bce9-a29228cadf9f","responseBody":"{\"name\":\"vrfvmssLB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae520ff6-fd2c-408c-8825-60ca62c21d14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:52.5126093Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b8946497-c197-4848-a404-2edb2a08ba10","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/b8946497-c197-4848-a404-2edb2a08ba10/ticks/636737717918094560","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:51.809456Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"6ca78a24-0de8-40af-8688-810f10524ac8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/6ca78a24-0de8-40af-8688-810f10524ac8/ticks/636737717909340704","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"51fe6901-cbad-426c-97bb-ba99113666f0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:50.9340704Z","submissionTimestamp":"2018-09-28T22:50:11.0785926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"47d26086-c667-42d1-a9d2-5958915096d4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/47d26086-c667-42d1-a9d2-5958915096d4/ticks/636737717777558046","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"34559270-a07b-47b5-b83f-70ef67631407","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:37.7558046Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"955c0429-be97-467f-a589-ce34fc2780be","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/955c0429-be97-467f-a589-ce34fc2780be/ticks/636737717745682027","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"64cd2a3c-e36e-48d4-99bf-b08e992e7cfe","responseBody":"{\"name\":\"vrfvmssVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"83a8d290-d3bb-4705-9312-b3964a8bc6a4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"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":"2018-09-28T22:49:34.5682027Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"5f90762d-0687-4265-a0c4-0d37c25aa881","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/5f90762d-0687-4265-a0c4-0d37c25aa881/ticks/636737717735056648","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:33.5056648Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"bcb97284-c57f-4600-8538-919bc1f7f124","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/bcb97284-c57f-4600-8538-919bc1f7f124/ticks/636737717702341700","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","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":"2018-09-28T22:49:30.23417Z","submissionTimestamp":"2018-09-28T22:49:55.0958417Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b9a8b726-6cbb-4efe-97dc-9d36ffebcdce","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/b9a8b726-6cbb-4efe-97dc-9d36ffebcdce/ticks/636737717675474564","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:27.5474564Z","submissionTimestamp":"2018-09-28T22:49:45.1033659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['45999'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:50:42 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A50%3A52Z%20and%20correlationId%20eq%20%279db6b95b-1784-48df-a22e-0ce21cfeb74b%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e5cdecf0-a2d6-4bf2-8260-93a9308eaae6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/e5cdecf0-a2d6-4bf2-8260-93a9308eaae6/ticks/636737718143227093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"62688fab-1397-44c1-b029-9dea6c947f3d","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:14.3227093Z","submissionTimestamp":"2018-09-28T22:50:39.0952675Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"051094a3-673b-4910-b821-e4fc8c0f22f8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/051094a3-673b-4910-b821-e4fc8c0f22f8/ticks/636737717971448530","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3a271bc6-a959-4fe3-a535-ca69be7f6a2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:57.144853Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"7d8fb7d7-608b-4f03-882b-fc96bf174c3b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/7d8fb7d7-608b-4f03-882b-fc96bf174c3b/ticks/636737717962229639","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:56.2229639Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e948073f-e0db-4b75-9fac-4f6cd8036ea6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/e948073f-e0db-4b75-9fac-4f6cd8036ea6/ticks/636737717925126093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"e73e4ab0-0f55-436a-bce9-a29228cadf9f","responseBody":"{\"name\":\"vrfvmssLB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae520ff6-fd2c-408c-8825-60ca62c21d14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:52.5126093Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b8946497-c197-4848-a404-2edb2a08ba10","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/b8946497-c197-4848-a404-2edb2a08ba10/ticks/636737717918094560","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:51.809456Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"6ca78a24-0de8-40af-8688-810f10524ac8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/6ca78a24-0de8-40af-8688-810f10524ac8/ticks/636737717909340704","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"51fe6901-cbad-426c-97bb-ba99113666f0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:50.9340704Z","submissionTimestamp":"2018-09-28T22:50:11.0785926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"47d26086-c667-42d1-a9d2-5958915096d4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/47d26086-c667-42d1-a9d2-5958915096d4/ticks/636737717777558046","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"34559270-a07b-47b5-b83f-70ef67631407","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:37.7558046Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"955c0429-be97-467f-a589-ce34fc2780be","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/955c0429-be97-467f-a589-ce34fc2780be/ticks/636737717745682027","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"64cd2a3c-e36e-48d4-99bf-b08e992e7cfe","responseBody":"{\"name\":\"vrfvmssVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"83a8d290-d3bb-4705-9312-b3964a8bc6a4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"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":"2018-09-28T22:49:34.5682027Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"5f90762d-0687-4265-a0c4-0d37c25aa881","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/5f90762d-0687-4265-a0c4-0d37c25aa881/ticks/636737717735056648","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:33.5056648Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"bcb97284-c57f-4600-8538-919bc1f7f124","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/bcb97284-c57f-4600-8538-919bc1f7f124/ticks/636737717702341700","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","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":"2018-09-28T22:49:30.23417Z","submissionTimestamp":"2018-09-28T22:49:55.0958417Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b9a8b726-6cbb-4efe-97dc-9d36ffebcdce","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/b9a8b726-6cbb-4efe-97dc-9d36ffebcdce/ticks/636737717675474564","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:27.5474564Z","submissionTimestamp":"2018-09-28T22:49:45.1033659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['45999'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:50:52 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586634319164788275?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592733851679061?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:51:00 GMT'] + date: ['Fri, 16 Nov 2018 01:59:53 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1687,248 +1314,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A51%3A03Z%20and%20correlationId%20eq%20%279db6b95b-1784-48df-a22e-0ce21cfeb74b%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"85f1fe5e-5867-432b-ac5c-6d1ff1ae60a5","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/85f1fe5e-5867-432b-ac5c-6d1ff1ae60a5/ticks/636737718296542076","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"82b63c22-df7f-40ed-864f-730727263620","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:29.6542076Z","submissionTimestamp":"2018-09-28T22:50:59.0869756Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e5cdecf0-a2d6-4bf2-8260-93a9308eaae6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/e5cdecf0-a2d6-4bf2-8260-93a9308eaae6/ticks/636737718143227093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"62688fab-1397-44c1-b029-9dea6c947f3d","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:14.3227093Z","submissionTimestamp":"2018-09-28T22:50:39.0952675Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"051094a3-673b-4910-b821-e4fc8c0f22f8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/051094a3-673b-4910-b821-e4fc8c0f22f8/ticks/636737717971448530","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3a271bc6-a959-4fe3-a535-ca69be7f6a2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:57.144853Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"7d8fb7d7-608b-4f03-882b-fc96bf174c3b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/7d8fb7d7-608b-4f03-882b-fc96bf174c3b/ticks/636737717962229639","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:56.2229639Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e948073f-e0db-4b75-9fac-4f6cd8036ea6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/e948073f-e0db-4b75-9fac-4f6cd8036ea6/ticks/636737717925126093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"e73e4ab0-0f55-436a-bce9-a29228cadf9f","responseBody":"{\"name\":\"vrfvmssLB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae520ff6-fd2c-408c-8825-60ca62c21d14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:52.5126093Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b8946497-c197-4848-a404-2edb2a08ba10","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/b8946497-c197-4848-a404-2edb2a08ba10/ticks/636737717918094560","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:51.809456Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"6ca78a24-0de8-40af-8688-810f10524ac8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/6ca78a24-0de8-40af-8688-810f10524ac8/ticks/636737717909340704","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"51fe6901-cbad-426c-97bb-ba99113666f0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:50.9340704Z","submissionTimestamp":"2018-09-28T22:50:11.0785926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"47d26086-c667-42d1-a9d2-5958915096d4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/47d26086-c667-42d1-a9d2-5958915096d4/ticks/636737717777558046","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"34559270-a07b-47b5-b83f-70ef67631407","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:37.7558046Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"955c0429-be97-467f-a589-ce34fc2780be","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/955c0429-be97-467f-a589-ce34fc2780be/ticks/636737717745682027","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"64cd2a3c-e36e-48d4-99bf-b08e992e7cfe","responseBody":"{\"name\":\"vrfvmssVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"83a8d290-d3bb-4705-9312-b3964a8bc6a4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"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":"2018-09-28T22:49:34.5682027Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"5f90762d-0687-4265-a0c4-0d37c25aa881","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/5f90762d-0687-4265-a0c4-0d37c25aa881/ticks/636737717735056648","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:33.5056648Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"bcb97284-c57f-4600-8538-919bc1f7f124","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/bcb97284-c57f-4600-8538-919bc1f7f124/ticks/636737717702341700","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","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":"2018-09-28T22:49:30.23417Z","submissionTimestamp":"2018-09-28T22:49:55.0958417Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b9a8b726-6cbb-4efe-97dc-9d36ffebcdce","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/b9a8b726-6cbb-4efe-97dc-9d36ffebcdce/ticks/636737717675474564","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:27.5474564Z","submissionTimestamp":"2018-09-28T22:49:45.1033659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['49673'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:51:03 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A51%3A14Z%20and%20correlationId%20eq%20%279db6b95b-1784-48df-a22e-0ce21cfeb74b%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"4631dcd9-15ec-44a0-b97a-d86a1bb34906","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/4631dcd9-15ec-44a0-b97a-d86a1bb34906/ticks/636737718467453501","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18d0dba5-89a6-4fbb-a89c-b4aeb028caf4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:46.7453501Z","submissionTimestamp":"2018-09-28T22:51:08.1368482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"85f1fe5e-5867-432b-ac5c-6d1ff1ae60a5","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/85f1fe5e-5867-432b-ac5c-6d1ff1ae60a5/ticks/636737718296542076","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"82b63c22-df7f-40ed-864f-730727263620","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:29.6542076Z","submissionTimestamp":"2018-09-28T22:50:59.0869756Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e5cdecf0-a2d6-4bf2-8260-93a9308eaae6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/e5cdecf0-a2d6-4bf2-8260-93a9308eaae6/ticks/636737718143227093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"62688fab-1397-44c1-b029-9dea6c947f3d","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:14.3227093Z","submissionTimestamp":"2018-09-28T22:50:39.0952675Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"051094a3-673b-4910-b821-e4fc8c0f22f8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/051094a3-673b-4910-b821-e4fc8c0f22f8/ticks/636737717971448530","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3a271bc6-a959-4fe3-a535-ca69be7f6a2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:57.144853Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"7d8fb7d7-608b-4f03-882b-fc96bf174c3b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/7d8fb7d7-608b-4f03-882b-fc96bf174c3b/ticks/636737717962229639","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:56.2229639Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e948073f-e0db-4b75-9fac-4f6cd8036ea6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/e948073f-e0db-4b75-9fac-4f6cd8036ea6/ticks/636737717925126093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"e73e4ab0-0f55-436a-bce9-a29228cadf9f","responseBody":"{\"name\":\"vrfvmssLB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae520ff6-fd2c-408c-8825-60ca62c21d14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:52.5126093Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b8946497-c197-4848-a404-2edb2a08ba10","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/b8946497-c197-4848-a404-2edb2a08ba10/ticks/636737717918094560","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:51.809456Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"6ca78a24-0de8-40af-8688-810f10524ac8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/6ca78a24-0de8-40af-8688-810f10524ac8/ticks/636737717909340704","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"51fe6901-cbad-426c-97bb-ba99113666f0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:50.9340704Z","submissionTimestamp":"2018-09-28T22:50:11.0785926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"47d26086-c667-42d1-a9d2-5958915096d4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/47d26086-c667-42d1-a9d2-5958915096d4/ticks/636737717777558046","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"34559270-a07b-47b5-b83f-70ef67631407","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:37.7558046Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"955c0429-be97-467f-a589-ce34fc2780be","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/955c0429-be97-467f-a589-ce34fc2780be/ticks/636737717745682027","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"64cd2a3c-e36e-48d4-99bf-b08e992e7cfe","responseBody":"{\"name\":\"vrfvmssVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"83a8d290-d3bb-4705-9312-b3964a8bc6a4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"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":"2018-09-28T22:49:34.5682027Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"5f90762d-0687-4265-a0c4-0d37c25aa881","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/5f90762d-0687-4265-a0c4-0d37c25aa881/ticks/636737717735056648","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:33.5056648Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"bcb97284-c57f-4600-8538-919bc1f7f124","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/bcb97284-c57f-4600-8538-919bc1f7f124/ticks/636737717702341700","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","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":"2018-09-28T22:49:30.23417Z","submissionTimestamp":"2018-09-28T22:49:55.0958417Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b9a8b726-6cbb-4efe-97dc-9d36ffebcdce","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/b9a8b726-6cbb-4efe-97dc-9d36ffebcdce/ticks/636737717675474564","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:27.5474564Z","submissionTimestamp":"2018-09-28T22:49:45.1033659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['53347'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:51:14 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A51%3A25Z%20and%20correlationId%20eq%20%279db6b95b-1784-48df-a22e-0ce21cfeb74b%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"4631dcd9-15ec-44a0-b97a-d86a1bb34906","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/4631dcd9-15ec-44a0-b97a-d86a1bb34906/ticks/636737718467453501","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18d0dba5-89a6-4fbb-a89c-b4aeb028caf4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:46.7453501Z","submissionTimestamp":"2018-09-28T22:51:08.1368482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"85f1fe5e-5867-432b-ac5c-6d1ff1ae60a5","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/85f1fe5e-5867-432b-ac5c-6d1ff1ae60a5/ticks/636737718296542076","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"82b63c22-df7f-40ed-864f-730727263620","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:29.6542076Z","submissionTimestamp":"2018-09-28T22:50:59.0869756Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e5cdecf0-a2d6-4bf2-8260-93a9308eaae6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/e5cdecf0-a2d6-4bf2-8260-93a9308eaae6/ticks/636737718143227093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"62688fab-1397-44c1-b029-9dea6c947f3d","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:14.3227093Z","submissionTimestamp":"2018-09-28T22:50:39.0952675Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"051094a3-673b-4910-b821-e4fc8c0f22f8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/051094a3-673b-4910-b821-e4fc8c0f22f8/ticks/636737717971448530","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3a271bc6-a959-4fe3-a535-ca69be7f6a2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:57.144853Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"7d8fb7d7-608b-4f03-882b-fc96bf174c3b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/7d8fb7d7-608b-4f03-882b-fc96bf174c3b/ticks/636737717962229639","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:56.2229639Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e948073f-e0db-4b75-9fac-4f6cd8036ea6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/e948073f-e0db-4b75-9fac-4f6cd8036ea6/ticks/636737717925126093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"e73e4ab0-0f55-436a-bce9-a29228cadf9f","responseBody":"{\"name\":\"vrfvmssLB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae520ff6-fd2c-408c-8825-60ca62c21d14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:52.5126093Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b8946497-c197-4848-a404-2edb2a08ba10","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/b8946497-c197-4848-a404-2edb2a08ba10/ticks/636737717918094560","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:51.809456Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"6ca78a24-0de8-40af-8688-810f10524ac8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/6ca78a24-0de8-40af-8688-810f10524ac8/ticks/636737717909340704","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"51fe6901-cbad-426c-97bb-ba99113666f0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:50.9340704Z","submissionTimestamp":"2018-09-28T22:50:11.0785926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"47d26086-c667-42d1-a9d2-5958915096d4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/47d26086-c667-42d1-a9d2-5958915096d4/ticks/636737717777558046","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"34559270-a07b-47b5-b83f-70ef67631407","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:37.7558046Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"955c0429-be97-467f-a589-ce34fc2780be","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/955c0429-be97-467f-a589-ce34fc2780be/ticks/636737717745682027","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"64cd2a3c-e36e-48d4-99bf-b08e992e7cfe","responseBody":"{\"name\":\"vrfvmssVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"83a8d290-d3bb-4705-9312-b3964a8bc6a4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"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":"2018-09-28T22:49:34.5682027Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"5f90762d-0687-4265-a0c4-0d37c25aa881","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/5f90762d-0687-4265-a0c4-0d37c25aa881/ticks/636737717735056648","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:33.5056648Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"bcb97284-c57f-4600-8538-919bc1f7f124","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/bcb97284-c57f-4600-8538-919bc1f7f124/ticks/636737717702341700","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","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":"2018-09-28T22:49:30.23417Z","submissionTimestamp":"2018-09-28T22:49:55.0958417Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b9a8b726-6cbb-4efe-97dc-9d36ffebcdce","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/b9a8b726-6cbb-4efe-97dc-9d36ffebcdce/ticks/636737717675474564","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:27.5474564Z","submissionTimestamp":"2018-09-28T22:49:45.1033659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['53347'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:51:24 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--image --admin-password -l -g -n --disable-overprovision + --instance-count --os-disk-caching --upgrade-policy-mode --authentication-type + --admin-username --public-ip-address --data-disk-sizes-gb --vm-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586634319164788275?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592733851679061?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:51:31 GMT'] + date: ['Fri, 16 Nov 2018 02:00:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1942,272 +1341,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A51%3A36Z%20and%20correlationId%20eq%20%279db6b95b-1784-48df-a22e-0ce21cfeb74b%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"6ee30f64-3171-42d6-83a3-64aac4f44ac7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/6ee30f64-3171-42d6-83a3-64aac4f44ac7/ticks/636737718624956687","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"62b39c78-bf64-42b0-b21c-b119b9f27609","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:51:02.4956687Z","submissionTimestamp":"2018-09-28T22:51:28.0757217Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"4631dcd9-15ec-44a0-b97a-d86a1bb34906","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/4631dcd9-15ec-44a0-b97a-d86a1bb34906/ticks/636737718467453501","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18d0dba5-89a6-4fbb-a89c-b4aeb028caf4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:46.7453501Z","submissionTimestamp":"2018-09-28T22:51:08.1368482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"85f1fe5e-5867-432b-ac5c-6d1ff1ae60a5","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/85f1fe5e-5867-432b-ac5c-6d1ff1ae60a5/ticks/636737718296542076","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"82b63c22-df7f-40ed-864f-730727263620","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:29.6542076Z","submissionTimestamp":"2018-09-28T22:50:59.0869756Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e5cdecf0-a2d6-4bf2-8260-93a9308eaae6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/e5cdecf0-a2d6-4bf2-8260-93a9308eaae6/ticks/636737718143227093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"62688fab-1397-44c1-b029-9dea6c947f3d","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:14.3227093Z","submissionTimestamp":"2018-09-28T22:50:39.0952675Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"051094a3-673b-4910-b821-e4fc8c0f22f8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/051094a3-673b-4910-b821-e4fc8c0f22f8/ticks/636737717971448530","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3a271bc6-a959-4fe3-a535-ca69be7f6a2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:57.144853Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"7d8fb7d7-608b-4f03-882b-fc96bf174c3b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/7d8fb7d7-608b-4f03-882b-fc96bf174c3b/ticks/636737717962229639","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:56.2229639Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e948073f-e0db-4b75-9fac-4f6cd8036ea6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/e948073f-e0db-4b75-9fac-4f6cd8036ea6/ticks/636737717925126093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"e73e4ab0-0f55-436a-bce9-a29228cadf9f","responseBody":"{\"name\":\"vrfvmssLB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae520ff6-fd2c-408c-8825-60ca62c21d14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:52.5126093Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b8946497-c197-4848-a404-2edb2a08ba10","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/b8946497-c197-4848-a404-2edb2a08ba10/ticks/636737717918094560","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:51.809456Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"6ca78a24-0de8-40af-8688-810f10524ac8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/6ca78a24-0de8-40af-8688-810f10524ac8/ticks/636737717909340704","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"51fe6901-cbad-426c-97bb-ba99113666f0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:50.9340704Z","submissionTimestamp":"2018-09-28T22:50:11.0785926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"47d26086-c667-42d1-a9d2-5958915096d4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/47d26086-c667-42d1-a9d2-5958915096d4/ticks/636737717777558046","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"34559270-a07b-47b5-b83f-70ef67631407","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:37.7558046Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"955c0429-be97-467f-a589-ce34fc2780be","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/955c0429-be97-467f-a589-ce34fc2780be/ticks/636737717745682027","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"64cd2a3c-e36e-48d4-99bf-b08e992e7cfe","responseBody":"{\"name\":\"vrfvmssVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"83a8d290-d3bb-4705-9312-b3964a8bc6a4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"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":"2018-09-28T22:49:34.5682027Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"5f90762d-0687-4265-a0c4-0d37c25aa881","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/5f90762d-0687-4265-a0c4-0d37c25aa881/ticks/636737717735056648","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:33.5056648Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"bcb97284-c57f-4600-8538-919bc1f7f124","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/bcb97284-c57f-4600-8538-919bc1f7f124/ticks/636737717702341700","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","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":"2018-09-28T22:49:30.23417Z","submissionTimestamp":"2018-09-28T22:49:55.0958417Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b9a8b726-6cbb-4efe-97dc-9d36ffebcdce","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/b9a8b726-6cbb-4efe-97dc-9d36ffebcdce/ticks/636737717675474564","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:27.5474564Z","submissionTimestamp":"2018-09-28T22:49:45.1033659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['57021'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:51:35 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A51%3A46Z%20and%20correlationId%20eq%20%279db6b95b-1784-48df-a22e-0ce21cfeb74b%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"57fca174-3fa6-4b38-a209-e4b34443e018","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/57fca174-3fa6-4b38-a209-e4b34443e018/ticks/636737718790057251","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"faf8209e-0757-4e17-965f-da137ddc7d8a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:51:19.0057251Z","submissionTimestamp":"2018-09-28T22:51:44.1308081Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"6ee30f64-3171-42d6-83a3-64aac4f44ac7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/6ee30f64-3171-42d6-83a3-64aac4f44ac7/ticks/636737718624956687","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"62b39c78-bf64-42b0-b21c-b119b9f27609","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:51:02.4956687Z","submissionTimestamp":"2018-09-28T22:51:28.0757217Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"4631dcd9-15ec-44a0-b97a-d86a1bb34906","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/4631dcd9-15ec-44a0-b97a-d86a1bb34906/ticks/636737718467453501","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18d0dba5-89a6-4fbb-a89c-b4aeb028caf4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:46.7453501Z","submissionTimestamp":"2018-09-28T22:51:08.1368482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"85f1fe5e-5867-432b-ac5c-6d1ff1ae60a5","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/85f1fe5e-5867-432b-ac5c-6d1ff1ae60a5/ticks/636737718296542076","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"82b63c22-df7f-40ed-864f-730727263620","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:29.6542076Z","submissionTimestamp":"2018-09-28T22:50:59.0869756Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e5cdecf0-a2d6-4bf2-8260-93a9308eaae6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/e5cdecf0-a2d6-4bf2-8260-93a9308eaae6/ticks/636737718143227093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"62688fab-1397-44c1-b029-9dea6c947f3d","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:14.3227093Z","submissionTimestamp":"2018-09-28T22:50:39.0952675Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"051094a3-673b-4910-b821-e4fc8c0f22f8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/051094a3-673b-4910-b821-e4fc8c0f22f8/ticks/636737717971448530","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3a271bc6-a959-4fe3-a535-ca69be7f6a2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:57.144853Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"7d8fb7d7-608b-4f03-882b-fc96bf174c3b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/7d8fb7d7-608b-4f03-882b-fc96bf174c3b/ticks/636737717962229639","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:56.2229639Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e948073f-e0db-4b75-9fac-4f6cd8036ea6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/e948073f-e0db-4b75-9fac-4f6cd8036ea6/ticks/636737717925126093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"e73e4ab0-0f55-436a-bce9-a29228cadf9f","responseBody":"{\"name\":\"vrfvmssLB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae520ff6-fd2c-408c-8825-60ca62c21d14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:52.5126093Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b8946497-c197-4848-a404-2edb2a08ba10","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/b8946497-c197-4848-a404-2edb2a08ba10/ticks/636737717918094560","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:51.809456Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"6ca78a24-0de8-40af-8688-810f10524ac8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/6ca78a24-0de8-40af-8688-810f10524ac8/ticks/636737717909340704","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"51fe6901-cbad-426c-97bb-ba99113666f0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:50.9340704Z","submissionTimestamp":"2018-09-28T22:50:11.0785926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"47d26086-c667-42d1-a9d2-5958915096d4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/47d26086-c667-42d1-a9d2-5958915096d4/ticks/636737717777558046","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"34559270-a07b-47b5-b83f-70ef67631407","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:37.7558046Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"955c0429-be97-467f-a589-ce34fc2780be","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/955c0429-be97-467f-a589-ce34fc2780be/ticks/636737717745682027","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"64cd2a3c-e36e-48d4-99bf-b08e992e7cfe","responseBody":"{\"name\":\"vrfvmssVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"83a8d290-d3bb-4705-9312-b3964a8bc6a4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"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":"2018-09-28T22:49:34.5682027Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"5f90762d-0687-4265-a0c4-0d37c25aa881","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/5f90762d-0687-4265-a0c4-0d37c25aa881/ticks/636737717735056648","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:33.5056648Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"bcb97284-c57f-4600-8538-919bc1f7f124","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/bcb97284-c57f-4600-8538-919bc1f7f124/ticks/636737717702341700","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","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":"2018-09-28T22:49:30.23417Z","submissionTimestamp":"2018-09-28T22:49:55.0958417Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b9a8b726-6cbb-4efe-97dc-9d36ffebcdce","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/b9a8b726-6cbb-4efe-97dc-9d36ffebcdce/ticks/636737717675474564","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:27.5474564Z","submissionTimestamp":"2018-09-28T22:49:45.1033659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['60695'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:51:46 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A51%3A57Z%20and%20correlationId%20eq%20%279db6b95b-1784-48df-a22e-0ce21cfeb74b%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"57fca174-3fa6-4b38-a209-e4b34443e018","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/57fca174-3fa6-4b38-a209-e4b34443e018/ticks/636737718790057251","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"faf8209e-0757-4e17-965f-da137ddc7d8a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:51:19.0057251Z","submissionTimestamp":"2018-09-28T22:51:44.1308081Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"6ee30f64-3171-42d6-83a3-64aac4f44ac7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/6ee30f64-3171-42d6-83a3-64aac4f44ac7/ticks/636737718624956687","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"62b39c78-bf64-42b0-b21c-b119b9f27609","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:51:02.4956687Z","submissionTimestamp":"2018-09-28T22:51:28.0757217Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"4631dcd9-15ec-44a0-b97a-d86a1bb34906","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/4631dcd9-15ec-44a0-b97a-d86a1bb34906/ticks/636737718467453501","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18d0dba5-89a6-4fbb-a89c-b4aeb028caf4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:46.7453501Z","submissionTimestamp":"2018-09-28T22:51:08.1368482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"85f1fe5e-5867-432b-ac5c-6d1ff1ae60a5","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/85f1fe5e-5867-432b-ac5c-6d1ff1ae60a5/ticks/636737718296542076","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"82b63c22-df7f-40ed-864f-730727263620","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:29.6542076Z","submissionTimestamp":"2018-09-28T22:50:59.0869756Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e5cdecf0-a2d6-4bf2-8260-93a9308eaae6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/e5cdecf0-a2d6-4bf2-8260-93a9308eaae6/ticks/636737718143227093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"62688fab-1397-44c1-b029-9dea6c947f3d","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:50:14.3227093Z","submissionTimestamp":"2018-09-28T22:50:39.0952675Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"051094a3-673b-4910-b821-e4fc8c0f22f8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/051094a3-673b-4910-b821-e4fc8c0f22f8/ticks/636737717971448530","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3a271bc6-a959-4fe3-a535-ca69be7f6a2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:57.144853Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"7d8fb7d7-608b-4f03-882b-fc96bf174c3b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ea445da4-7b07-4705-a3c7-23e74833c5b5","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/events/7d8fb7d7-608b-4f03-882b-fc96bf174c3b/ticks/636737717962229639","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5e206730-1feb-4cdf-bd4a-ed9879b86165","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:56.2229639Z","submissionTimestamp":"2018-09-28T22:50:12.1019011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"e948073f-e0db-4b75-9fac-4f6cd8036ea6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/e948073f-e0db-4b75-9fac-4f6cd8036ea6/ticks/636737717925126093","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"e73e4ab0-0f55-436a-bce9-a29228cadf9f","responseBody":"{\"name\":\"vrfvmssLB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae520ff6-fd2c-408c-8825-60ca62c21d14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\",\"etag\":\"W/\\\"f8459eef-8a09-46b2-b15e-14e2e8ad7763\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:49:52.5126093Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b8946497-c197-4848-a404-2edb2a08ba10","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"86956f22-529f-4b3b-bbd3-d02f13004e55","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/events/b8946497-c197-4848-a404-2edb2a08ba10/ticks/636737717918094560","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"c429d08d-b3de-4224-96d2-7b3c30434482","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vrfvmssLBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vrfvmssLBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vrfpubip\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:51.809456Z","submissionTimestamp":"2018-09-28T22:50:10.0866242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"6ca78a24-0de8-40af-8688-810f10524ac8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/6ca78a24-0de8-40af-8688-810f10524ac8/ticks/636737717909340704","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"51fe6901-cbad-426c-97bb-ba99113666f0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:50.9340704Z","submissionTimestamp":"2018-09-28T22:50:11.0785926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"47d26086-c667-42d1-a9d2-5958915096d4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/47d26086-c667-42d1-a9d2-5958915096d4/ticks/636737717777558046","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"34559270-a07b-47b5-b83f-70ef67631407","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:37.7558046Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"955c0429-be97-467f-a589-ce34fc2780be","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/955c0429-be97-467f-a589-ce34fc2780be/ticks/636737717745682027","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"64cd2a3c-e36e-48d4-99bf-b08e992e7cfe","responseBody":"{\"name\":\"vrfvmssVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"83a8d290-d3bb-4705-9312-b3964a8bc6a4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\",\"etag\":\"W/\\\"d095e029-b3f0-4ede-b213-a188e45b8a4a\\\"\",\"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":"2018-09-28T22:49:34.5682027Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"5f90762d-0687-4265-a0c4-0d37c25aa881","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"027b24c5-de91-4693-ba67-a0760a9e54fd","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/events/5f90762d-0687-4265-a0c4-0d37c25aa881/ticks/636737717735056648","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"476a12fc-c5ce-4dec-89a4-a6e4091d0a41","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vrfvmssSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:33.5056648Z","submissionTimestamp":"2018-09-28T22:49:56.1108365Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"bcb97284-c57f-4600-8538-919bc1f7f124","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/bcb97284-c57f-4600-8538-919bc1f7f124/ticks/636737717702341700","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","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":"2018-09-28T22:49:30.23417Z","submissionTimestamp":"2018-09-28T22:49:55.0958417Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","description":"","eventDataId":"b9a8b726-6cbb-4efe-97dc-9d36ffebcdce","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be753b86-c370-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ/events/b9a8b726-6cbb-4efe-97dc-9d36ffebcdce/ticks/636737717675474564","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:49:27.5474564Z","submissionTimestamp":"2018-09-28T22:49:45.1033659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['60695'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:51:57 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--image --admin-password -l -g -n --disable-overprovision + --instance-count --os-disk-caching --upgrade-policy-mode --authentication-type + --admin-username --public-ip-address --data-disk-sizes-gb --vm-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586634319164788275?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592733851679061?api-version=2018-05-01 response: body: {string: '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:52:02 GMT'] + date: ['Fri, 16 Nov 2018 02:00:54 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -2221,18 +1368,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--image --admin-password -l -g -n --disable-overprovision + --instance-count --os-disk-caching --upgrade-policy-mode --authentication-type + --admin-username --public-ip-address --data-disk-sizes-gb --vm-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","name":"vmss_deploy_No52RBzsQAXrOehrA7v7sW3RCLOZCcSZ","properties":{"templateHash":"9707451972839664387","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-09-28T22:51:58.600179Z","duration":"PT2M29.6013793S","correlationId":"9db6b95b-1784-48df-a22e-0ce21cfeb74b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vrfvmssVNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrfvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vrfvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrfvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vrfvmss"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Automatic"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vrfvme6e6","adminUsername":"myadmin","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"credativ","offer":"Debian","sku":"8","version":"latest"},"dataDisks":[{"lun":0,"createOption":"Empty","caching":"None","managedDisk":{"storageAccountType":"Standard_LRS"},"diskSizeGB":1}]},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vrfvme6e6Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vrfvme6e6IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":false,"uniqueId":"992e5dc5-8188-49a8-926b-686e571c2c87"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"}]}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_Puryma18mirAa4VoLjYpgVIrLc0auECm","name":"vmss_deploy_Puryma18mirAa4VoLjYpgVIrLc0auECm","properties":{"templateHash":"10542471473615152131","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-16T02:00:41.6214525Z","duration":"PT2M21.3117362S","correlationId":"29444c1b-485c-4bb2-9208-63fd6ab265b7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vrfvmssVNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrfvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vrfvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vrfvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vrfvmss"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Automatic"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vrfvmb7f8","adminUsername":"myadmin","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"credativ","offer":"Debian","sku":"8","version":"latest"},"dataDisks":[{"lun":0,"createOption":"Empty","caching":"None","managedDisk":{"storageAccountType":"Standard_LRS"},"diskSizeGB":1}]},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vrfvmb7f8Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vrfvmb7f8IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":false,"uniqueId":"b152d039-a78e-4f49-a091-81291f82ed27"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET"}]}}'} headers: cache-control: [no-cache] - content-length: ['4877'] + content-length: ['4879'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:52:02 GMT'] + date: ['Fri, 16 Nov 2018 02:00:54 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -2246,21 +1395,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [network lb show] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 networkmanagementclient/2.2.1 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmsslb?api-version=2018-08-01 response: body: {string: "{\r\n \"name\": \"vrfvmssLB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB\"\ - ,\r\n \"etag\": \"W/\\\"5abf4e05-ddc5-462d-a06d-85696b11766d\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"752b75d4-7aa9-4f6c-967c-ea75d4b37230\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"ae520ff6-fd2c-408c-8825-60ca62c21d14\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"5d98bd30-1ed6-4011-b557-1d927770b5f5\"\ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\ loadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"\ - ,\r\n \"etag\": \"W/\\\"5abf4e05-ddc5-462d-a06d-85696b11766d\\\"\"\ + ,\r\n \"etag\": \"W/\\\"752b75d4-7aa9-4f6c-967c-ea75d4b37230\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\ @@ -2273,16 +1422,16 @@ interactions: \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"vrfvmssLBBEPool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\"\ - ,\r\n \"etag\": \"W/\\\"5abf4e05-ddc5-462d-a06d-85696b11766d\\\"\"\ + ,\r\n \"etag\": \"W/\\\"752b75d4-7aa9-4f6c-967c-ea75d4b37230\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"backendIPConfigurations\": [\r\n {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0/networkInterfaces/vrfvme6e6Nic/ipConfigurations/vrfvme6e6IPConfig\"\ - \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/1/networkInterfaces/vrfvme6e6Nic/ipConfigurations/vrfvme6e6IPConfig\"\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0/networkInterfaces/vrfvmb7f8Nic/ipConfigurations/vrfvmb7f8IPConfig\"\ + \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/1/networkInterfaces/vrfvmb7f8Nic/ipConfigurations/vrfvmb7f8IPConfig\"\ \r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\ \r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\"\ : [],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"vrfvmssLBNatPool.0\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatRules/vrfvmssLBNatPool.0\"\ - ,\r\n \"etag\": \"W/\\\"5abf4e05-ddc5-462d-a06d-85696b11766d\\\"\"\ + ,\r\n \"etag\": \"W/\\\"752b75d4-7aa9-4f6c-967c-ea75d4b37230\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"\ @@ -2290,10 +1439,10 @@ interactions: : 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ : false,\r\n \"enableTcpReset\": false,\r\n \"backendIPConfiguration\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0/networkInterfaces/vrfvme6e6Nic/ipConfigurations/vrfvme6e6IPConfig\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0/networkInterfaces/vrfvmb7f8Nic/ipConfigurations/vrfvmb7f8IPConfig\"\ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\ vrfvmssLBNatPool.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatRules/vrfvmssLBNatPool.1\"\ - ,\r\n \"etag\": \"W/\\\"5abf4e05-ddc5-462d-a06d-85696b11766d\\\"\"\ + ,\r\n \"etag\": \"W/\\\"752b75d4-7aa9-4f6c-967c-ea75d4b37230\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/frontendIPConfigurations/loadBalancerFrontEnd\"\ @@ -2301,11 +1450,11 @@ interactions: : 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\ : 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\"\ : false,\r\n \"enableTcpReset\": false,\r\n \"backendIPConfiguration\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/1/networkInterfaces/vrfvme6e6Nic/ipConfigurations/vrfvme6e6IPConfig\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/1/networkInterfaces/vrfvmb7f8Nic/ipConfigurations/vrfvmb7f8IPConfig\"\ \r\n }\r\n }\r\n }\r\n ],\r\n \"outboundRules\"\ : [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"vrfvmssLBNatPool\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"\ - ,\r\n \"etag\": \"W/\\\"5abf4e05-ddc5-462d-a06d-85696b11766d\\\"\"\ + ,\r\n \"etag\": \"W/\\\"752b75d4-7aa9-4f6c-967c-ea75d4b37230\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendPortRangeStart\": 50000,\r\n \"frontendPortRangeEnd\"\ : 50119,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\"\ @@ -2320,8 +1469,8 @@ interactions: cache-control: [no-cache] content-length: ['7884'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:52:03 GMT'] - etag: [W/"5abf4e05-ddc5-462d-a06d-85696b11766d"] + date: ['Fri, 16 Nov 2018 02:00:54 GMT'] + etag: [W/"752b75d4-7aa9-4f6c-967c-ea75d4b37230"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2337,9 +1486,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss show] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss?api-version=2018-10-01 @@ -2348,7 +1497,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\"\ - : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvme6e6\"\ + : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvmb7f8\"\ ,\r\n \"adminUsername\": \"myadmin\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"\ provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \ @@ -2364,15 +1513,15 @@ interactions: : {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n \ \ },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n \ \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"vrfvme6e6Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ + :[{\"name\":\"vrfvmb7f8Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ - ipConfigurations\":[{\"name\":\"vrfvme6e6IPConfig\",\"properties\":{\"subnet\"\ + ipConfigurations\":[{\"name\":\"vrfvmb7f8IPConfig\",\"properties\":{\"subnet\"\ :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\"\ },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\"\ }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"\ }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"992e5dc5-8188-49a8-926b-686e571c2c87\"\ + overprovision\": false,\r\n \"uniqueId\": \"b152d039-a78e-4f49-a091-81291f82ed27\"\ \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss\"\ ,\r\n \"name\": \"vrfvmss\"\r\n}"} @@ -2380,7 +1529,7 @@ interactions: cache-control: [no-cache] content-length: ['2794'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:52:04 GMT'] + date: ['Fri, 16 Nov 2018 02:00:56 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2388,7 +1537,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;179,Microsoft.Compute/GetVMScaleSet30Min;1227'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;185,Microsoft.Compute/GetVMScaleSet30Min;1217'] status: {code: 200, message: OK} - request: body: null @@ -2397,9 +1546,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss list-instances] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --query] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines?api-version=2018-10-01 @@ -2407,71 +1556,71 @@ interactions: body: {string: "{\r\n \"value\": [\r\n {\r\n \"instanceId\": \"0\",\r\ \n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"\ tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"\ - latestModelApplied\": true,\r\n \"vmId\": \"9a3953e9-3413-4691-b6f2-5ca910f438ea\"\ + latestModelApplied\": true,\r\n \"vmId\": \"3bd4ca9f-597e-4ed8-9f9d-da4d3f9179b2\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n\ \ \"imageReference\": {\r\n \"publisher\": \"credativ\"\ ,\r\n \"offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n\ \ \"version\": \"8.0.201807160\"\r\n },\r\n \"\ osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"vrfvmss_vrfvmss_0_OsDisk_1_a582e8d246ed450795610deb9bb10a04\",\r\n \ + : \"vrfvmss_vrfvmss_0_OsDisk_1_acfaf2f645e84531aff82b8bd2e68bba\",\r\n \ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"\ ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vrfvmss_vrfvmss_0_OsDisk_1_a582e8d246ed450795610deb9bb10a04\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vrfvmss_vrfvmss_0_OsDisk_1_acfaf2f645e84531aff82b8bd2e68bba\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \ \ \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\ - \n \"name\": \"vrfvmss_vrfvmss_0_disk2_9960960c9ba14c1b833496cfe16490cb\"\ + \n \"name\": \"vrfvmss_vrfvmss_0_disk2_23810c34a8df4f76852845dbad8ac0b1\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\"\ : \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vrfvmss_vrfvmss_0_disk2_9960960c9ba14c1b833496cfe16490cb\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vrfvmss_vrfvmss_0_disk2_23810c34a8df4f76852845dbad8ac0b1\"\ \r\n },\r\n \"diskSizeGB\": 1\r\n }\r\ \n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\"\ - : \"vrfvme6e6000000\",\r\n \"adminUsername\": \"myadmin\",\r\n \ + : \"vrfvmb7f8000000\",\r\n \"adminUsername\": \"myadmin\",\r\n \ \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \ \ \"secrets\": [],\r\n \"allowExtensionOperations\": true\r\ \n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0/networkInterfaces/vrfvme6e6Nic\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0/networkInterfaces/vrfvmb7f8Nic\"\ }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \ \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSCNQ52EFOUMJ4PZ7QXWQI6OIQ4PQNMMHVYQQ7H77FVJ356NT/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONS5TSABATKYVX2XCCKIYGRCCXP4KH6C4UB5MNOO5ILKUHYVEA/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0\"\ ,\r\n \"name\": \"vrfvmss_0\"\r\n },\r\n {\r\n \"instanceId\"\ : \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n\ \ \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n\ - \ \"latestModelApplied\": true,\r\n \"vmId\": \"40d0258a-cc7a-4945-9ce3-ff801133914c\"\ + \ \"latestModelApplied\": true,\r\n \"vmId\": \"552b4e0b-4aab-4ec7-a0e7-df2d398a061f\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n\ \ \"imageReference\": {\r\n \"publisher\": \"credativ\"\ ,\r\n \"offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n\ \ \"version\": \"8.0.201807160\"\r\n },\r\n \"\ osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"vrfvmss_vrfvmss_1_OsDisk_1_ba6e8071c4684a84af654b02f9ff69bd\",\r\n \ + : \"vrfvmss_vrfvmss_1_OsDisk_1_f34a9f4632c3459cb6800ee1a3184f99\",\r\n \ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"\ ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vrfvmss_vrfvmss_1_OsDisk_1_ba6e8071c4684a84af654b02f9ff69bd\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vrfvmss_vrfvmss_1_OsDisk_1_f34a9f4632c3459cb6800ee1a3184f99\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \ \ \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\ - \n \"name\": \"vrfvmss_vrfvmss_1_disk2_401803fdcef749f08ca9e88f6b0a3fe6\"\ + \n \"name\": \"vrfvmss_vrfvmss_1_disk2_79c8b7a5994c481486960140959e018f\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\"\ : \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vrfvmss_vrfvmss_1_disk2_401803fdcef749f08ca9e88f6b0a3fe6\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vrfvmss_vrfvmss_1_disk2_79c8b7a5994c481486960140959e018f\"\ \r\n },\r\n \"diskSizeGB\": 1\r\n }\r\ \n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\"\ - : \"vrfvme6e6000001\",\r\n \"adminUsername\": \"myadmin\",\r\n \ + : \"vrfvmb7f8000001\",\r\n \"adminUsername\": \"myadmin\",\r\n \ \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \ \ \"secrets\": [],\r\n \"allowExtensionOperations\": true\r\ \n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/1/networkInterfaces/vrfvme6e6Nic\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/1/networkInterfaces/vrfvmb7f8Nic\"\ }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \ \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSCNQ52EFOUMJ4PZ7QXWQI6OIQ4PQNMMHVYQQ7H77FVJ356NT/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/1\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONS5TSABATKYVX2XCCKIYGRCCXP4KH6C4UB5MNOO5ILKUHYVEA/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/1\"\ ,\r\n \"name\": \"vrfvmss_1\"\r\n }\r\n ]\r\n}"} headers: cache-control: [no-cache] content-length: ['5724'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:52:06 GMT'] + date: ['Fri, 16 Nov 2018 02:00:56 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2479,7 +1628,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/HighCostGetVMScaleSet3Min;174,Microsoft.Compute/HighCostGetVMScaleSet30Min;880,Microsoft.Compute/VMScaleSetVMViews3Min;4986'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/HighCostGetVMScaleSet3Min;177,Microsoft.Compute/HighCostGetVMScaleSet30Min;887,Microsoft.Compute/VMScaleSetVMViews3Min;4994'] x-ms-request-charge: ['2'] status: {code: 200, message: OK} - request: @@ -2489,36 +1638,36 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss show] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --instance-id] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualmachines/0?api-version=2018-10-01 response: body: {string: "{\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n \"name\"\ : \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\"\ - : {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"9a3953e9-3413-4691-b6f2-5ca910f438ea\"\ + : {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"3bd4ca9f-597e-4ed8-9f9d-da4d3f9179b2\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"\ imageReference\": {\r\n \"publisher\": \"credativ\",\r\n \"\ offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n \"version\": \"\ 8.0.201807160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":\ - \ \"Linux\",\r\n \"name\": \"vrfvmss_vrfvmss_0_OsDisk_1_a582e8d246ed450795610deb9bb10a04\"\ + \ \"Linux\",\r\n \"name\": \"vrfvmss_vrfvmss_0_OsDisk_1_acfaf2f645e84531aff82b8bd2e68bba\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vrfvmss_vrfvmss_0_OsDisk_1_a582e8d246ed450795610deb9bb10a04\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vrfvmss_vrfvmss_0_OsDisk_1_acfaf2f645e84531aff82b8bd2e68bba\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vrfvmss_vrfvmss_0_disk2_9960960c9ba14c1b833496cfe16490cb\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vrfvmss_vrfvmss_0_disk2_23810c34a8df4f76852845dbad8ac0b1\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vrfvmss_vrfvmss_0_disk2_9960960c9ba14c1b833496cfe16490cb\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vrfvmss_vrfvmss_0_disk2_23810c34a8df4f76852845dbad8ac0b1\"\ \r\n },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n\ - \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vrfvme6e6000000\"\ + \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vrfvmb7f8000000\"\ ,\r\n \"adminUsername\": \"myadmin\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0/networkInterfaces/vrfvme6e6Nic\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0/networkInterfaces/vrfvmb7f8Nic\"\ }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"\ Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss/virtualMachines/0\"\ @@ -2527,7 +1676,7 @@ interactions: cache-control: [no-cache] content-length: ['2604'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:52:07 GMT'] + date: ['Fri, 16 Nov 2018 02:00:57 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2535,7 +1684,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSetVM3Min;499,Microsoft.Compute/GetVMScaleSetVM30Min;2499,Microsoft.Compute/VMScaleSetVMViews3Min;4985'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSetVM3Min;499,Microsoft.Compute/GetVMScaleSetVM30Min;2499,Microsoft.Compute/VMScaleSetVMViews3Min;4993'] x-ms-request-charge: ['1'] status: {code: 200, message: OK} - request: @@ -2545,9 +1694,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss disk attach] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --size-gb] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss?api-version=2018-10-01 @@ -2556,7 +1705,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\"\ - : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvme6e6\"\ + : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvmb7f8\"\ ,\r\n \"adminUsername\": \"myadmin\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"\ provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \ @@ -2572,15 +1721,15 @@ interactions: : {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n \ \ },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n \ \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"vrfvme6e6Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ + :[{\"name\":\"vrfvmb7f8Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ - ipConfigurations\":[{\"name\":\"vrfvme6e6IPConfig\",\"properties\":{\"subnet\"\ + ipConfigurations\":[{\"name\":\"vrfvmb7f8IPConfig\",\"properties\":{\"subnet\"\ :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\"\ },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\"\ }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"\ }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"992e5dc5-8188-49a8-926b-686e571c2c87\"\ + overprovision\": false,\r\n \"uniqueId\": \"b152d039-a78e-4f49-a091-81291f82ed27\"\ \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss\"\ ,\r\n \"name\": \"vrfvmss\"\r\n}"} @@ -2588,7 +1737,7 @@ interactions: cache-control: [no-cache] content-length: ['2794'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:52:07 GMT'] + date: ['Fri, 16 Nov 2018 02:00:58 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2596,22 +1745,22 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;178,Microsoft.Compute/GetVMScaleSet30Min;1226'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;184,Microsoft.Compute/GetVMScaleSet30Min;1216'] status: {code: 200, message: OK} - request: body: 'b''{"location": "westus", "tags": {}, "sku": {"name": "Standard_D2_v2", "tier": "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": "Automatic"}, "virtualMachineProfile": {"osProfile": {"computerNamePrefix": - "vrfvme6e6", "adminUsername": "myadmin", "linuxConfiguration": {"disablePasswordAuthentication": + "vrfvmb7f8", "adminUsername": "myadmin", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent": true}, "secrets": []}, "storageProfile": {"imageReference": {"publisher": "credativ", "offer": "Debian", "sku": "8", "version": "latest"}, "osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "managedDisk": {"storageAccountType": "Standard_LRS"}}, "dataDisks": [{"lun": 0, "caching": "None", "createOption": "Empty", "diskSizeGB": 1, "managedDisk": {"storageAccountType": "Standard_LRS"}}, {"lun": 1, "createOption": "Empty", "diskSizeGB": 3, "managedDisk": - {}}]}, "networkProfile": {"networkInterfaceConfigurations": [{"name": "vrfvme6e6Nic", + {}}]}, "networkProfile": {"networkInterfaceConfigurations": [{"name": "vrfvmb7f8Nic", "properties": {"primary": true, "enableAcceleratedNetworking": false, "dnsSettings": - {"dnsServers": []}, "ipConfigurations": [{"name": "vrfvme6e6IPConfig", "properties": + {"dnsServers": []}, "ipConfigurations": [{"name": "vrfvmb7f8IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool"}], @@ -2625,9 +1774,9 @@ interactions: Connection: [keep-alive] Content-Length: ['1991'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --size-gb] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss?api-version=2018-10-01 @@ -2636,7 +1785,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\"\ - : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvme6e6\"\ + : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvmb7f8\"\ ,\r\n \"adminUsername\": \"myadmin\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"\ provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \ @@ -2656,24 +1805,24 @@ interactions: \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\ \n \"diskSizeGB\": 3\r\n }\r\n ]\r\n },\r\n\ \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\"\ - :\"vrfvme6e6Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ + :\"vrfvmb7f8Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ - ipConfigurations\":[{\"name\":\"vrfvme6e6IPConfig\",\"properties\":{\"subnet\"\ + ipConfigurations\":[{\"name\":\"vrfvmb7f8IPConfig\",\"properties\":{\"subnet\"\ :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\"\ },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\"\ }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"\ }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"992e5dc5-8188-49a8-926b-686e571c2c87\"\ + overprovision\": false,\r\n \"uniqueId\": \"b152d039-a78e-4f49-a091-81291f82ed27\"\ \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss\"\ ,\r\n \"name\": \"vrfvmss\"\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0f618f6a-11e2-4c25-a0f5-e2464aad442b?api-version=2018-10-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/026556ee-650e-40b1-860c-9da093101e8b?api-version=2018-10-01'] cache-control: [no-cache] content-length: ['3040'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:52:09 GMT'] + date: ['Fri, 16 Nov 2018 02:01:00 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2681,8 +1830,8 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/CreateVMScaleSet3Min;36,Microsoft.Compute/CreateVMScaleSet30Min;190,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1175,Microsoft.Compute/VmssQueuedVMOperations;4798'] - x-ms-ratelimit-remaining-subscription-writes: ['1193'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/CreateVMScaleSet3Min;38,Microsoft.Compute/CreateVMScaleSet30Min;192,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1190,Microsoft.Compute/VmssQueuedVMOperations;4798'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-ms-request-charge: ['2'] status: {code: 200, message: OK} - request: @@ -2692,20 +1841,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss disk attach] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --size-gb] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0f618f6a-11e2-4c25-a0f5-e2464aad442b?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/026556ee-650e-40b1-860c-9da093101e8b?api-version=2018-10-01 response: - body: {string: "{\r\n \"startTime\": \"2018-09-28T22:52:09.3831644+00:00\",\r\ - \n \"endTime\": \"2018-09-28T22:52:16.2581671+00:00\",\r\n \"status\": \"\ - Succeeded\",\r\n \"name\": \"0f618f6a-11e2-4c25-a0f5-e2464aad442b\"\r\n}"} + body: {string: "{\r\n \"startTime\": \"2018-11-16T02:00:59.826583+00:00\",\r\n\ + \ \"endTime\": \"2018-11-16T02:01:06.7641049+00:00\",\r\n \"status\": \"\ + Succeeded\",\r\n \"name\": \"026556ee-650e-40b1-860c-9da093101e8b\"\r\n}"} headers: cache-control: [no-cache] - content-length: ['184'] + content-length: ['183'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:52:19 GMT'] + date: ['Fri, 16 Nov 2018 02:01:10 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2713,7 +1862,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29630'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29872'] status: {code: 200, message: OK} - request: body: null @@ -2722,9 +1871,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss disk attach] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --size-gb] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss?api-version=2018-10-01 response: @@ -2732,7 +1881,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\"\ - : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvme6e6\"\ + : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvmb7f8\"\ ,\r\n \"adminUsername\": \"myadmin\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"\ provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \ @@ -2752,15 +1901,15 @@ interactions: \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\ \n \"diskSizeGB\": 3\r\n }\r\n ]\r\n },\r\n\ \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\"\ - :\"vrfvme6e6Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ + :\"vrfvmb7f8Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ - ipConfigurations\":[{\"name\":\"vrfvme6e6IPConfig\",\"properties\":{\"subnet\"\ + ipConfigurations\":[{\"name\":\"vrfvmb7f8IPConfig\",\"properties\":{\"subnet\"\ :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\"\ },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\"\ }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"\ }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"992e5dc5-8188-49a8-926b-686e571c2c87\"\ + overprovision\": false,\r\n \"uniqueId\": \"b152d039-a78e-4f49-a091-81291f82ed27\"\ \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss\"\ ,\r\n \"name\": \"vrfvmss\"\r\n}"} @@ -2768,7 +1917,7 @@ interactions: cache-control: [no-cache] content-length: ['3041'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:52:19 GMT'] + date: ['Fri, 16 Nov 2018 02:01:10 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2776,7 +1925,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;175,Microsoft.Compute/GetVMScaleSet30Min;1223'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;182,Microsoft.Compute/GetVMScaleSet30Min;1213'] status: {code: 200, message: OK} - request: body: null @@ -2785,9 +1934,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss show] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss?api-version=2018-10-01 @@ -2796,7 +1945,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\"\ - : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvme6e6\"\ + : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvmb7f8\"\ ,\r\n \"adminUsername\": \"myadmin\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"\ provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \ @@ -2816,15 +1965,15 @@ interactions: \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\ \n \"diskSizeGB\": 3\r\n }\r\n ]\r\n },\r\n\ \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\"\ - :\"vrfvme6e6Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ + :\"vrfvmb7f8Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ - ipConfigurations\":[{\"name\":\"vrfvme6e6IPConfig\",\"properties\":{\"subnet\"\ + ipConfigurations\":[{\"name\":\"vrfvmb7f8IPConfig\",\"properties\":{\"subnet\"\ :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\"\ },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\"\ }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"\ }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"992e5dc5-8188-49a8-926b-686e571c2c87\"\ + overprovision\": false,\r\n \"uniqueId\": \"b152d039-a78e-4f49-a091-81291f82ed27\"\ \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss\"\ ,\r\n \"name\": \"vrfvmss\"\r\n}"} @@ -2832,7 +1981,7 @@ interactions: cache-control: [no-cache] content-length: ['3041'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:52:21 GMT'] + date: ['Fri, 16 Nov 2018 02:01:11 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2840,7 +1989,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;174,Microsoft.Compute/GetVMScaleSet30Min;1222'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;181,Microsoft.Compute/GetVMScaleSet30Min;1212'] status: {code: 200, message: OK} - request: body: null @@ -2849,9 +1998,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss disk detach] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --lun] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss?api-version=2018-10-01 @@ -2860,7 +2009,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\"\ - : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvme6e6\"\ + : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvmb7f8\"\ ,\r\n \"adminUsername\": \"myadmin\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"\ provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \ @@ -2880,15 +2029,15 @@ interactions: \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\ \n \"diskSizeGB\": 3\r\n }\r\n ]\r\n },\r\n\ \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\"\ - :\"vrfvme6e6Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ + :\"vrfvmb7f8Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ - ipConfigurations\":[{\"name\":\"vrfvme6e6IPConfig\",\"properties\":{\"subnet\"\ + ipConfigurations\":[{\"name\":\"vrfvmb7f8IPConfig\",\"properties\":{\"subnet\"\ :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\"\ },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\"\ }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"\ }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"992e5dc5-8188-49a8-926b-686e571c2c87\"\ + overprovision\": false,\r\n \"uniqueId\": \"b152d039-a78e-4f49-a091-81291f82ed27\"\ \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss\"\ ,\r\n \"name\": \"vrfvmss\"\r\n}"} @@ -2896,7 +2045,7 @@ interactions: cache-control: [no-cache] content-length: ['3041'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:52:22 GMT'] + date: ['Fri, 16 Nov 2018 02:01:12 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2904,21 +2053,21 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;173,Microsoft.Compute/GetVMScaleSet30Min;1221'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;180,Microsoft.Compute/GetVMScaleSet30Min;1211'] status: {code: 200, message: OK} - request: body: 'b''{"location": "westus", "tags": {}, "sku": {"name": "Standard_D2_v2", "tier": "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": "Automatic"}, "virtualMachineProfile": {"osProfile": {"computerNamePrefix": - "vrfvme6e6", "adminUsername": "myadmin", "linuxConfiguration": {"disablePasswordAuthentication": + "vrfvmb7f8", "adminUsername": "myadmin", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent": true}, "secrets": []}, "storageProfile": {"imageReference": {"publisher": "credativ", "offer": "Debian", "sku": "8", "version": "latest"}, "osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "managedDisk": {"storageAccountType": "Standard_LRS"}}, "dataDisks": [{"lun": 0, "caching": "None", "createOption": "Empty", "diskSizeGB": 1, "managedDisk": {"storageAccountType": "Standard_LRS"}}]}, "networkProfile": {"networkInterfaceConfigurations": [{"name": - "vrfvme6e6Nic", "properties": {"primary": true, "enableAcceleratedNetworking": - false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vrfvme6e6IPConfig", + "vrfvmb7f8Nic", "properties": {"primary": true, "enableAcceleratedNetworking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vrfvmb7f8IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool"}], @@ -2932,9 +2081,9 @@ interactions: Connection: [keep-alive] Content-Length: ['1918'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --lun] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss?api-version=2018-10-01 @@ -2943,7 +2092,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\"\ - : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvme6e6\"\ + : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvmb7f8\"\ ,\r\n \"adminUsername\": \"myadmin\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"\ provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \ @@ -2959,24 +2108,24 @@ interactions: : {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n \ \ },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n \ \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"vrfvme6e6Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ + :[{\"name\":\"vrfvmb7f8Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ - ipConfigurations\":[{\"name\":\"vrfvme6e6IPConfig\",\"properties\":{\"subnet\"\ + ipConfigurations\":[{\"name\":\"vrfvmb7f8IPConfig\",\"properties\":{\"subnet\"\ :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\"\ },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\"\ }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"\ }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"992e5dc5-8188-49a8-926b-686e571c2c87\"\ + overprovision\": false,\r\n \"uniqueId\": \"b152d039-a78e-4f49-a091-81291f82ed27\"\ \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss\"\ ,\r\n \"name\": \"vrfvmss\"\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/eca0cbb3-2315-4e63-9806-dfe11b01d060?api-version=2018-10-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cdde2a0e-1395-490a-8c91-eafc56488f81?api-version=2018-10-01'] cache-control: [no-cache] content-length: ['2793'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:52:22 GMT'] + date: ['Fri, 16 Nov 2018 02:01:12 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2984,8 +2133,8 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/CreateVMScaleSet3Min;34,Microsoft.Compute/CreateVMScaleSet30Min;188,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1171,Microsoft.Compute/VmssQueuedVMOperations;4798'] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/CreateVMScaleSet3Min;37,Microsoft.Compute/CreateVMScaleSet30Min;191,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1190,Microsoft.Compute/VmssQueuedVMOperations;4798'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-ms-request-charge: ['2'] status: {code: 200, message: OK} - request: @@ -2995,20 +2144,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss disk detach] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --lun] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/eca0cbb3-2315-4e63-9806-dfe11b01d060?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cdde2a0e-1395-490a-8c91-eafc56488f81?api-version=2018-10-01 response: - body: {string: "{\r\n \"startTime\": \"2018-09-28T22:52:23.2581328+00:00\",\r\ - \n \"status\": \"InProgress\",\r\n \"name\": \"eca0cbb3-2315-4e63-9806-dfe11b01d060\"\ + body: {string: "{\r\n \"startTime\": \"2018-11-16T02:01:12.795329+00:00\",\r\n\ + \ \"status\": \"InProgress\",\r\n \"name\": \"cdde2a0e-1395-490a-8c91-eafc56488f81\"\ \r\n}"} headers: cache-control: [no-cache] - content-length: ['134'] + content-length: ['133'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:52:33 GMT'] + date: ['Fri, 16 Nov 2018 02:01:22 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -3016,7 +2165,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29623'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29870'] status: {code: 200, message: OK} - request: body: null @@ -3025,20 +2174,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss disk detach] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --lun] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/eca0cbb3-2315-4e63-9806-dfe11b01d060?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cdde2a0e-1395-490a-8c91-eafc56488f81?api-version=2018-10-01 response: - body: {string: "{\r\n \"startTime\": \"2018-09-28T22:52:23.2581328+00:00\",\r\ - \n \"endTime\": \"2018-09-28T22:52:38.8740025+00:00\",\r\n \"status\": \"\ - Succeeded\",\r\n \"name\": \"eca0cbb3-2315-4e63-9806-dfe11b01d060\"\r\n}"} + body: {string: "{\r\n \"startTime\": \"2018-11-16T02:01:12.795329+00:00\",\r\n\ + \ \"endTime\": \"2018-11-16T02:01:34.4828392+00:00\",\r\n \"status\": \"\ + Succeeded\",\r\n \"name\": \"cdde2a0e-1395-490a-8c91-eafc56488f81\"\r\n}"} headers: cache-control: [no-cache] - content-length: ['184'] + content-length: ['183'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:53:10 GMT'] + date: ['Fri, 16 Nov 2018 02:02:00 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -3046,7 +2195,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29609'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29867'] status: {code: 200, message: OK} - request: body: null @@ -3055,9 +2204,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss disk detach] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --lun] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss?api-version=2018-10-01 response: @@ -3065,7 +2214,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\"\ - : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvme6e6\"\ + : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvmb7f8\"\ ,\r\n \"adminUsername\": \"myadmin\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"\ provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \ @@ -3081,15 +2230,15 @@ interactions: : {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n \ \ },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n \ \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"vrfvme6e6Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ + :[{\"name\":\"vrfvmb7f8Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ - ipConfigurations\":[{\"name\":\"vrfvme6e6IPConfig\",\"properties\":{\"subnet\"\ + ipConfigurations\":[{\"name\":\"vrfvmb7f8IPConfig\",\"properties\":{\"subnet\"\ :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\"\ },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\"\ }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"\ }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"992e5dc5-8188-49a8-926b-686e571c2c87\"\ + overprovision\": false,\r\n \"uniqueId\": \"b152d039-a78e-4f49-a091-81291f82ed27\"\ \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss\"\ ,\r\n \"name\": \"vrfvmss\"\r\n}"} @@ -3097,7 +2246,7 @@ interactions: cache-control: [no-cache] content-length: ['2794'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:53:12 GMT'] + date: ['Fri, 16 Nov 2018 02:02:00 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -3105,7 +2254,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;161,Microsoft.Compute/GetVMScaleSet30Min;1199'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;169,Microsoft.Compute/GetVMScaleSet30Min;1197'] status: {code: 200, message: OK} - request: body: null @@ -3114,9 +2263,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss show] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss?api-version=2018-10-01 @@ -3125,7 +2274,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\"\ - : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvme6e6\"\ + : {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vrfvmb7f8\"\ ,\r\n \"adminUsername\": \"myadmin\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"\ provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \ @@ -3141,15 +2290,15 @@ interactions: : {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n \ \ },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n \ \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"vrfvme6e6Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ + :[{\"name\":\"vrfvmb7f8Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ - ipConfigurations\":[{\"name\":\"vrfvme6e6IPConfig\",\"properties\":{\"subnet\"\ + ipConfigurations\":[{\"name\":\"vrfvmb7f8IPConfig\",\"properties\":{\"subnet\"\ :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vrfvmssVNET/subnets/vrfvmssSubnet\"\ },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/backendAddressPools/vrfvmssLBBEPool\"\ }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vrfvmssLB/inboundNatPools/vrfvmssLBNatPool\"\ }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"992e5dc5-8188-49a8-926b-686e571c2c87\"\ + overprovision\": false,\r\n \"uniqueId\": \"b152d039-a78e-4f49-a091-81291f82ed27\"\ \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vrfvmss\"\ ,\r\n \"name\": \"vrfvmss\"\r\n}"} @@ -3157,7 +2306,7 @@ interactions: cache-control: [no-cache] content-length: ['2794'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:53:13 GMT'] + date: ['Fri, 16 Nov 2018 02:02:01 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -3165,7 +2314,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;159,Microsoft.Compute/GetVMScaleSet30Min;1197'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;168,Microsoft.Compute/GetVMScaleSet30Min;1196'] status: {code: 200, message: OK} - request: body: null @@ -3176,9 +2325,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--name --yes --no-wait] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001?api-version=2018-05-01 @@ -3187,9 +2336,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Fri, 28 Sep 2018 22:53:14 GMT'] + date: ['Fri, 16 Nov 2018 02:02:02 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk1TUzo1RkNSRUFURTo1Rk9QVElPTlNDTlE1MkVGT1VNSnw5ODc0QzVDRUQ3MEM1NkFFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk1TUzo1RkNSRUFURTo1Rk9QVElPTlM1VFNBQkFUS1lWWHw3MTA3RjU4NEQ1RTVFMTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_instance_disks.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_instance_disks.yaml index 43c81a313f0..c649f5f3de7 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_instance_disks.yaml +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_instance_disks.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-09-28T22:53:16Z"}}' + "date": "2018-11-16T02:02:03Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--location --name --tag] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001","name":"cli_test_vmss_create_options000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-09-28T22:53:16Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001","name":"cli_test_vmss_create_options000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-16T02:02:03Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:53:17 GMT'] + date: ['Fri, 16 Nov 2018 02:02:03 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -81,22 +81,22 @@ interactions: content-length: ['2235'] content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] content-type: [text/plain; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:53:18 GMT'] + date: ['Fri, 16 Nov 2018 02:02:04 GMT'] etag: ['"60d07919b4224266adafb81340896eea100dc887"'] - expires: ['Fri, 28 Sep 2018 22:58:18 GMT'] - source-age: ['272'] + expires: ['Fri, 16 Nov 2018 02:07:04 GMT'] + source-age: ['0'] strict-transport-security: [max-age=31536000] vary: ['Authorization,Accept-Encoding'] via: [1.1 varnish] - x-cache: [HIT] - x-cache-hits: ['1'] + x-cache: [MISS] + x-cache-hits: ['0'] x-content-type-options: [nosniff] - x-fastly-request-id: [50d23c15e6592db8559819947859f888270ed9a4] + x-fastly-request-id: [026836076f96c8019d1e6992750cc8d28a6f2bea] x-frame-options: [deny] x-geo-block-list: [''] - x-github-request-id: ['80CA:0178:257225:291D3E:5BAEAFCE'] - x-served-by: [cache-dfw18627-DFW] - x-timer: ['S1538175199.650026,VS0,VE1'] + x-github-request-id: ['50E4:593F:117AD3:122AF0:5BEE251C'] + x-served-by: [cache-sea1043-SEA] + x-timer: ['S1542333725.703535,VS0,VE90'] x-xss-protection: [1; mode=block] status: {code: 200, message: OK} - request: @@ -106,9 +106,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 networkmanagementclient/2.2.1 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--image --admin-username --admin-password -l -g -n --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 @@ -118,7 +118,7 @@ interactions: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:53:18 GMT'] + date: ['Fri, 16 Nov 2018 02:02:04 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -151,10 +151,10 @@ interactions: "manual"}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": "Standard_LRS"}}, "imageReference": {"publisher": "credativ", "offer": "Debian", "sku": "8", "version": - "latest"}}, "osProfile": {"computerNamePrefix": "vmss1f87d", "adminUsername": + "latest"}}, "osProfile": {"computerNamePrefix": "vmss1d466", "adminUsername": "clitest1", "adminPassword": "[parameters(\''adminPassword\'')]"}, "networkProfile": - {"networkInterfaceConfigurations": [{"name": "vmss1f87dNic", "properties": {"primary": - "true", "ipConfigurations": [{"name": "vmss1f87dIPConfig", "properties": {"subnet": + {"networkInterfaceConfigurations": [{"name": "vmss1d466Nic", "properties": {"primary": + "true", "ipConfigurations": [{"name": "vmss1d466IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}}, @@ -169,25 +169,25 @@ interactions: Connection: [keep-alive] Content-Length: ['3810'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--image --admin-username --admin-password -l -g -n --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","name":"vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","properties":{"templateHash":"3064010448383018007","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-09-28T22:53:21.6802171Z","duration":"PT0.8126768S","correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_CjBgXQKt5RZB33gCeyLwT0z2NdBMeh0d","name":"vmss_deploy_CjBgXQKt5RZB33gCeyLwT0z2NdBMeh0d","properties":{"templateHash":"12158275929926177698","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-16T02:02:07.272788Z","duration":"PT0.6730995S","correlationId":"fcaff251-18a3-49c7-8f7a-36aad15286f7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/operationStatuses/08586634316846100916?api-version=2018-05-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_CjBgXQKt5RZB33gCeyLwT0z2NdBMeh0d/operationStatuses/08586592731588779441?api-version=2018-05-01'] cache-control: [no-cache] content-length: ['2690'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:53:21 GMT'] + date: ['Fri, 16 Nov 2018 02:02:06 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -196,128 +196,18 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A53%3A30Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[]}'} - headers: - cache-control: [no-cache] - content-length: ['12'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:53:30 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A53%3A40Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[]}'} - headers: - cache-control: [no-cache] - content-length: ['12'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:53:40 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - accept-language: [en-US] + ParameterSetName: [--image --admin-username --admin-password -l -g -n --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-08-18T06%3A53%3A51Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['24531'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:53:51 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586634316846100916?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592731588779441?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:53:51 GMT'] + date: ['Fri, 16 Nov 2018 02:02:37 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -331,143 +221,18 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A54%3A01Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"b678ce79-236a-42d2-924a-466b0e04dbc4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/b678ce79-236a-42d2-924a-466b0e04dbc4/ticks/636737720132024462","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d3682df3-717a-46d9-bba2-2cce2765aa56","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:33.2024462Z","submissionTimestamp":"2018-09-28T22:53:52.1160866Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"5d0d3536-5256-4bf5-bfb5-746d4cd0552b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/5d0d3536-5256-4bf5-bfb5-746d4cd0552b/ticks/636737720108622906","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cdd817a0-1d54-4653-b2ba-3672d5220e2d","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:30.8622906Z","submissionTimestamp":"2018-09-28T22:53:53.0876121Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['31700'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:54:01 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A54%3A12Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9/ticks/636737720349666780","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"9aa30ca4-a0e8-4e30-b27a-19dc202040bd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:54.966678Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"76f7d642-2c93-4ace-9204-3710b407fff0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/76f7d642-2c93-4ace-9204-3710b407fff0/ticks/636737720339979548","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:53.9979548Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"b678ce79-236a-42d2-924a-466b0e04dbc4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/b678ce79-236a-42d2-924a-466b0e04dbc4/ticks/636737720132024462","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d3682df3-717a-46d9-bba2-2cce2765aa56","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:33.2024462Z","submissionTimestamp":"2018-09-28T22:53:52.1160866Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"5d0d3536-5256-4bf5-bfb5-746d4cd0552b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/5d0d3536-5256-4bf5-bfb5-746d4cd0552b/ticks/636737720108622906","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cdd817a0-1d54-4653-b2ba-3672d5220e2d","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:30.8622906Z","submissionTimestamp":"2018-09-28T22:53:53.0876121Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['39223'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:54:11 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--image --admin-username --admin-password -l -g -n --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586634316846100916?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592731588779441?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:54:22 GMT'] + date: ['Fri, 16 Nov 2018 02:03:06 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -481,245 +246,18 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A54%3A22Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9/ticks/636737720349666780","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"9aa30ca4-a0e8-4e30-b27a-19dc202040bd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:54.966678Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"76f7d642-2c93-4ace-9204-3710b407fff0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/76f7d642-2c93-4ace-9204-3710b407fff0/ticks/636737720339979548","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:53.9979548Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"aeac72cc-e86c-4719-894b-f6f6fdc20d2d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/aeac72cc-e86c-4719-894b-f6f6fdc20d2d/ticks/636737720302718418","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"72323014-095a-4926-8173-5a2fe1812061","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9ad3b1cc-aa8b-4061-a77c-225d16aa30dc\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:50.2718418Z","submissionTimestamp":"2018-09-28T22:54:15.1459246Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ef63406c-bd10-4bda-a19e-d3bcad67d7a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/ef63406c-bd10-4bda-a19e-d3bcad67d7a8/ticks/636737720282093088","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:48.2093088Z","submissionTimestamp":"2018-09-28T22:54:05.1188407Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"b678ce79-236a-42d2-924a-466b0e04dbc4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/b678ce79-236a-42d2-924a-466b0e04dbc4/ticks/636737720132024462","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d3682df3-717a-46d9-bba2-2cce2765aa56","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:33.2024462Z","submissionTimestamp":"2018-09-28T22:53:52.1160866Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"5d0d3536-5256-4bf5-bfb5-746d4cd0552b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/5d0d3536-5256-4bf5-bfb5-746d4cd0552b/ticks/636737720108622906","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cdd817a0-1d54-4653-b2ba-3672d5220e2d","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:30.8622906Z","submissionTimestamp":"2018-09-28T22:53:53.0876121Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['50583'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:54:22 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - accept-language: [en-US] + ParameterSetName: [--image --admin-username --admin-password -l -g -n --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-08-18T06%3A54%3A33Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9/ticks/636737720349666780","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"9aa30ca4-a0e8-4e30-b27a-19dc202040bd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:54.966678Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"76f7d642-2c93-4ace-9204-3710b407fff0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/76f7d642-2c93-4ace-9204-3710b407fff0/ticks/636737720339979548","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:53.9979548Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"aeac72cc-e86c-4719-894b-f6f6fdc20d2d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/aeac72cc-e86c-4719-894b-f6f6fdc20d2d/ticks/636737720302718418","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"72323014-095a-4926-8173-5a2fe1812061","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9ad3b1cc-aa8b-4061-a77c-225d16aa30dc\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:50.2718418Z","submissionTimestamp":"2018-09-28T22:54:15.1459246Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ef63406c-bd10-4bda-a19e-d3bcad67d7a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/ef63406c-bd10-4bda-a19e-d3bcad67d7a8/ticks/636737720282093088","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:48.2093088Z","submissionTimestamp":"2018-09-28T22:54:05.1188407Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"b678ce79-236a-42d2-924a-466b0e04dbc4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/b678ce79-236a-42d2-924a-466b0e04dbc4/ticks/636737720132024462","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d3682df3-717a-46d9-bba2-2cce2765aa56","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:33.2024462Z","submissionTimestamp":"2018-09-28T22:53:52.1160866Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"5d0d3536-5256-4bf5-bfb5-746d4cd0552b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/5d0d3536-5256-4bf5-bfb5-746d4cd0552b/ticks/636737720108622906","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cdd817a0-1d54-4653-b2ba-3672d5220e2d","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:30.8622906Z","submissionTimestamp":"2018-09-28T22:53:53.0876121Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['50583'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:54:33 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A54%3A44Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"1b6f854b-1e7b-4e5c-a2fd-8470c014a70a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/1b6f854b-1e7b-4e5c-a2fd-8470c014a70a/ticks/636737720667079521","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"45d71741-7ce3-4c2a-afdc-24745e056e78","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:26.7079521Z","submissionTimestamp":"2018-09-28T22:54:42.0889825Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"6fcb88fd-9b87-48a3-95e7-798b6f7d83fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/6fcb88fd-9b87-48a3-95e7-798b6f7d83fe/ticks/636737720520883047","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c9b86cc1-4865-4a18-84a7-0c539d58d966","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:12.0883047Z","submissionTimestamp":"2018-09-28T22:54:36.0941838Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9/ticks/636737720349666780","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"9aa30ca4-a0e8-4e30-b27a-19dc202040bd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:54.966678Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"76f7d642-2c93-4ace-9204-3710b407fff0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/76f7d642-2c93-4ace-9204-3710b407fff0/ticks/636737720339979548","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:53.9979548Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"aeac72cc-e86c-4719-894b-f6f6fdc20d2d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/aeac72cc-e86c-4719-894b-f6f6fdc20d2d/ticks/636737720302718418","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"72323014-095a-4926-8173-5a2fe1812061","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9ad3b1cc-aa8b-4061-a77c-225d16aa30dc\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:50.2718418Z","submissionTimestamp":"2018-09-28T22:54:15.1459246Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ef63406c-bd10-4bda-a19e-d3bcad67d7a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/ef63406c-bd10-4bda-a19e-d3bcad67d7a8/ticks/636737720282093088","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:48.2093088Z","submissionTimestamp":"2018-09-28T22:54:05.1188407Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"b678ce79-236a-42d2-924a-466b0e04dbc4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/b678ce79-236a-42d2-924a-466b0e04dbc4/ticks/636737720132024462","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d3682df3-717a-46d9-bba2-2cce2765aa56","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:33.2024462Z","submissionTimestamp":"2018-09-28T22:53:52.1160866Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"5d0d3536-5256-4bf5-bfb5-746d4cd0552b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/5d0d3536-5256-4bf5-bfb5-746d4cd0552b/ticks/636737720108622906","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cdd817a0-1d54-4653-b2ba-3672d5220e2d","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:30.8622906Z","submissionTimestamp":"2018-09-28T22:53:53.0876121Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['57919'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:54:44 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586634316846100916?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592731588779441?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:54:52 GMT'] + date: ['Fri, 16 Nov 2018 02:03:38 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -733,269 +271,18 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - accept-language: [en-US] + ParameterSetName: [--image --admin-username --admin-password -l -g -n --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-08-18T06%3A54%3A54Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"1b6f854b-1e7b-4e5c-a2fd-8470c014a70a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/1b6f854b-1e7b-4e5c-a2fd-8470c014a70a/ticks/636737720667079521","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"45d71741-7ce3-4c2a-afdc-24745e056e78","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:26.7079521Z","submissionTimestamp":"2018-09-28T22:54:42.0889825Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"6fcb88fd-9b87-48a3-95e7-798b6f7d83fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/6fcb88fd-9b87-48a3-95e7-798b6f7d83fe/ticks/636737720520883047","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c9b86cc1-4865-4a18-84a7-0c539d58d966","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:12.0883047Z","submissionTimestamp":"2018-09-28T22:54:36.0941838Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9/ticks/636737720349666780","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"9aa30ca4-a0e8-4e30-b27a-19dc202040bd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:54.966678Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"76f7d642-2c93-4ace-9204-3710b407fff0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/76f7d642-2c93-4ace-9204-3710b407fff0/ticks/636737720339979548","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:53.9979548Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"aeac72cc-e86c-4719-894b-f6f6fdc20d2d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/aeac72cc-e86c-4719-894b-f6f6fdc20d2d/ticks/636737720302718418","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"72323014-095a-4926-8173-5a2fe1812061","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9ad3b1cc-aa8b-4061-a77c-225d16aa30dc\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:50.2718418Z","submissionTimestamp":"2018-09-28T22:54:15.1459246Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ef63406c-bd10-4bda-a19e-d3bcad67d7a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/ef63406c-bd10-4bda-a19e-d3bcad67d7a8/ticks/636737720282093088","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:48.2093088Z","submissionTimestamp":"2018-09-28T22:54:05.1188407Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"b678ce79-236a-42d2-924a-466b0e04dbc4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/b678ce79-236a-42d2-924a-466b0e04dbc4/ticks/636737720132024462","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d3682df3-717a-46d9-bba2-2cce2765aa56","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:33.2024462Z","submissionTimestamp":"2018-09-28T22:53:52.1160866Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"5d0d3536-5256-4bf5-bfb5-746d4cd0552b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/5d0d3536-5256-4bf5-bfb5-746d4cd0552b/ticks/636737720108622906","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cdd817a0-1d54-4653-b2ba-3672d5220e2d","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:30.8622906Z","submissionTimestamp":"2018-09-28T22:53:53.0876121Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['57919'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:54:54 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A55%3A05Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"1b6f854b-1e7b-4e5c-a2fd-8470c014a70a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/1b6f854b-1e7b-4e5c-a2fd-8470c014a70a/ticks/636737720667079521","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"45d71741-7ce3-4c2a-afdc-24745e056e78","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:26.7079521Z","submissionTimestamp":"2018-09-28T22:54:42.0889825Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"6fcb88fd-9b87-48a3-95e7-798b6f7d83fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/6fcb88fd-9b87-48a3-95e7-798b6f7d83fe/ticks/636737720520883047","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c9b86cc1-4865-4a18-84a7-0c539d58d966","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:12.0883047Z","submissionTimestamp":"2018-09-28T22:54:36.0941838Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9/ticks/636737720349666780","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"9aa30ca4-a0e8-4e30-b27a-19dc202040bd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:54.966678Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"76f7d642-2c93-4ace-9204-3710b407fff0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/76f7d642-2c93-4ace-9204-3710b407fff0/ticks/636737720339979548","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:53.9979548Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"aeac72cc-e86c-4719-894b-f6f6fdc20d2d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/aeac72cc-e86c-4719-894b-f6f6fdc20d2d/ticks/636737720302718418","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"72323014-095a-4926-8173-5a2fe1812061","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9ad3b1cc-aa8b-4061-a77c-225d16aa30dc\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:50.2718418Z","submissionTimestamp":"2018-09-28T22:54:15.1459246Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ef63406c-bd10-4bda-a19e-d3bcad67d7a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/ef63406c-bd10-4bda-a19e-d3bcad67d7a8/ticks/636737720282093088","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:48.2093088Z","submissionTimestamp":"2018-09-28T22:54:05.1188407Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"b678ce79-236a-42d2-924a-466b0e04dbc4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/b678ce79-236a-42d2-924a-466b0e04dbc4/ticks/636737720132024462","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d3682df3-717a-46d9-bba2-2cce2765aa56","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:33.2024462Z","submissionTimestamp":"2018-09-28T22:53:52.1160866Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"5d0d3536-5256-4bf5-bfb5-746d4cd0552b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/5d0d3536-5256-4bf5-bfb5-746d4cd0552b/ticks/636737720108622906","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cdd817a0-1d54-4653-b2ba-3672d5220e2d","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:30.8622906Z","submissionTimestamp":"2018-09-28T22:53:53.0876121Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['57919'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:55:05 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A55%3A16Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"9e1eff9a-594f-4cf1-b133-0e4cc3b86710","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/9e1eff9a-594f-4cf1-b133-0e4cc3b86710/ticks/636737720980316948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"647c9ab2-e0ca-4ed5-b35b-f87b59b5670f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:58.0316948Z","submissionTimestamp":"2018-09-28T22:55:12.066879Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"bc00447e-a14b-405b-b1cb-ab42d1d10543","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/bc00447e-a14b-405b-b1cb-ab42d1d10543/ticks/636737720820496552","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aa6afa4a-1bf4-4346-b157-61535ac8c488","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:42.0496552Z","submissionTimestamp":"2018-09-28T22:55:08.1131424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"1b6f854b-1e7b-4e5c-a2fd-8470c014a70a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/1b6f854b-1e7b-4e5c-a2fd-8470c014a70a/ticks/636737720667079521","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"45d71741-7ce3-4c2a-afdc-24745e056e78","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:26.7079521Z","submissionTimestamp":"2018-09-28T22:54:42.0889825Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"6fcb88fd-9b87-48a3-95e7-798b6f7d83fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/6fcb88fd-9b87-48a3-95e7-798b6f7d83fe/ticks/636737720520883047","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c9b86cc1-4865-4a18-84a7-0c539d58d966","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:12.0883047Z","submissionTimestamp":"2018-09-28T22:54:36.0941838Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9/ticks/636737720349666780","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"9aa30ca4-a0e8-4e30-b27a-19dc202040bd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:54.966678Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"76f7d642-2c93-4ace-9204-3710b407fff0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/76f7d642-2c93-4ace-9204-3710b407fff0/ticks/636737720339979548","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:53.9979548Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"aeac72cc-e86c-4719-894b-f6f6fdc20d2d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/aeac72cc-e86c-4719-894b-f6f6fdc20d2d/ticks/636737720302718418","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"72323014-095a-4926-8173-5a2fe1812061","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9ad3b1cc-aa8b-4061-a77c-225d16aa30dc\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:50.2718418Z","submissionTimestamp":"2018-09-28T22:54:15.1459246Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ef63406c-bd10-4bda-a19e-d3bcad67d7a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/ef63406c-bd10-4bda-a19e-d3bcad67d7a8/ticks/636737720282093088","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:48.2093088Z","submissionTimestamp":"2018-09-28T22:54:05.1188407Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"b678ce79-236a-42d2-924a-466b0e04dbc4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/b678ce79-236a-42d2-924a-466b0e04dbc4/ticks/636737720132024462","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d3682df3-717a-46d9-bba2-2cce2765aa56","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:33.2024462Z","submissionTimestamp":"2018-09-28T22:53:52.1160866Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"5d0d3536-5256-4bf5-bfb5-746d4cd0552b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/5d0d3536-5256-4bf5-bfb5-746d4cd0552b/ticks/636737720108622906","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cdd817a0-1d54-4653-b2ba-3672d5220e2d","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:30.8622906Z","submissionTimestamp":"2018-09-28T22:53:53.0876121Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['65254'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:55:15 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586634316846100916?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592731588779441?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:55:23 GMT'] + date: ['Fri, 16 Nov 2018 02:04:08 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1009,613 +296,18 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - accept-language: [en-US] + ParameterSetName: [--image --admin-username --admin-password -l -g -n --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-08-18T06%3A55%3A26Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"9e1eff9a-594f-4cf1-b133-0e4cc3b86710","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/9e1eff9a-594f-4cf1-b133-0e4cc3b86710/ticks/636737720980316948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"647c9ab2-e0ca-4ed5-b35b-f87b59b5670f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:58.0316948Z","submissionTimestamp":"2018-09-28T22:55:12.066879Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"bc00447e-a14b-405b-b1cb-ab42d1d10543","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/bc00447e-a14b-405b-b1cb-ab42d1d10543/ticks/636737720820496552","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aa6afa4a-1bf4-4346-b157-61535ac8c488","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:42.0496552Z","submissionTimestamp":"2018-09-28T22:55:08.1131424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"1b6f854b-1e7b-4e5c-a2fd-8470c014a70a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/1b6f854b-1e7b-4e5c-a2fd-8470c014a70a/ticks/636737720667079521","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"45d71741-7ce3-4c2a-afdc-24745e056e78","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:26.7079521Z","submissionTimestamp":"2018-09-28T22:54:42.0889825Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"6fcb88fd-9b87-48a3-95e7-798b6f7d83fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/6fcb88fd-9b87-48a3-95e7-798b6f7d83fe/ticks/636737720520883047","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c9b86cc1-4865-4a18-84a7-0c539d58d966","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:12.0883047Z","submissionTimestamp":"2018-09-28T22:54:36.0941838Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9/ticks/636737720349666780","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"9aa30ca4-a0e8-4e30-b27a-19dc202040bd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:54.966678Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"76f7d642-2c93-4ace-9204-3710b407fff0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/76f7d642-2c93-4ace-9204-3710b407fff0/ticks/636737720339979548","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:53.9979548Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"aeac72cc-e86c-4719-894b-f6f6fdc20d2d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/aeac72cc-e86c-4719-894b-f6f6fdc20d2d/ticks/636737720302718418","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"72323014-095a-4926-8173-5a2fe1812061","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9ad3b1cc-aa8b-4061-a77c-225d16aa30dc\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:50.2718418Z","submissionTimestamp":"2018-09-28T22:54:15.1459246Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ef63406c-bd10-4bda-a19e-d3bcad67d7a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/ef63406c-bd10-4bda-a19e-d3bcad67d7a8/ticks/636737720282093088","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:48.2093088Z","submissionTimestamp":"2018-09-28T22:54:05.1188407Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"b678ce79-236a-42d2-924a-466b0e04dbc4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/b678ce79-236a-42d2-924a-466b0e04dbc4/ticks/636737720132024462","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d3682df3-717a-46d9-bba2-2cce2765aa56","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:33.2024462Z","submissionTimestamp":"2018-09-28T22:53:52.1160866Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"5d0d3536-5256-4bf5-bfb5-746d4cd0552b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/5d0d3536-5256-4bf5-bfb5-746d4cd0552b/ticks/636737720108622906","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cdd817a0-1d54-4653-b2ba-3672d5220e2d","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:30.8622906Z","submissionTimestamp":"2018-09-28T22:53:53.0876121Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['65254'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:55:26 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A55%3A37Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"95192f4d-c5d3-480d-aaef-819208eb1e8d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/95192f4d-c5d3-480d-aaef-819208eb1e8d/ticks/636737721133366914","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"032bf085-6bef-4b01-a770-c00ba0604100","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:55:13.3366914Z","submissionTimestamp":"2018-09-28T22:55:35.0918305Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"9e1eff9a-594f-4cf1-b133-0e4cc3b86710","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/9e1eff9a-594f-4cf1-b133-0e4cc3b86710/ticks/636737720980316948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"647c9ab2-e0ca-4ed5-b35b-f87b59b5670f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:58.0316948Z","submissionTimestamp":"2018-09-28T22:55:12.066879Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"bc00447e-a14b-405b-b1cb-ab42d1d10543","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/bc00447e-a14b-405b-b1cb-ab42d1d10543/ticks/636737720820496552","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aa6afa4a-1bf4-4346-b157-61535ac8c488","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:42.0496552Z","submissionTimestamp":"2018-09-28T22:55:08.1131424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"1b6f854b-1e7b-4e5c-a2fd-8470c014a70a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/1b6f854b-1e7b-4e5c-a2fd-8470c014a70a/ticks/636737720667079521","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"45d71741-7ce3-4c2a-afdc-24745e056e78","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:26.7079521Z","submissionTimestamp":"2018-09-28T22:54:42.0889825Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"6fcb88fd-9b87-48a3-95e7-798b6f7d83fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/6fcb88fd-9b87-48a3-95e7-798b6f7d83fe/ticks/636737720520883047","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c9b86cc1-4865-4a18-84a7-0c539d58d966","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:12.0883047Z","submissionTimestamp":"2018-09-28T22:54:36.0941838Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9/ticks/636737720349666780","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"9aa30ca4-a0e8-4e30-b27a-19dc202040bd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:54.966678Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"76f7d642-2c93-4ace-9204-3710b407fff0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/76f7d642-2c93-4ace-9204-3710b407fff0/ticks/636737720339979548","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:53.9979548Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"aeac72cc-e86c-4719-894b-f6f6fdc20d2d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/aeac72cc-e86c-4719-894b-f6f6fdc20d2d/ticks/636737720302718418","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"72323014-095a-4926-8173-5a2fe1812061","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9ad3b1cc-aa8b-4061-a77c-225d16aa30dc\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:50.2718418Z","submissionTimestamp":"2018-09-28T22:54:15.1459246Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ef63406c-bd10-4bda-a19e-d3bcad67d7a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/ef63406c-bd10-4bda-a19e-d3bcad67d7a8/ticks/636737720282093088","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:48.2093088Z","submissionTimestamp":"2018-09-28T22:54:05.1188407Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"b678ce79-236a-42d2-924a-466b0e04dbc4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/b678ce79-236a-42d2-924a-466b0e04dbc4/ticks/636737720132024462","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d3682df3-717a-46d9-bba2-2cce2765aa56","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:33.2024462Z","submissionTimestamp":"2018-09-28T22:53:52.1160866Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"5d0d3536-5256-4bf5-bfb5-746d4cd0552b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/5d0d3536-5256-4bf5-bfb5-746d4cd0552b/ticks/636737720108622906","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cdd817a0-1d54-4653-b2ba-3672d5220e2d","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:30.8622906Z","submissionTimestamp":"2018-09-28T22:53:53.0876121Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['68922'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:55:37 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A55%3A48Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"95192f4d-c5d3-480d-aaef-819208eb1e8d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/95192f4d-c5d3-480d-aaef-819208eb1e8d/ticks/636737721133366914","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"032bf085-6bef-4b01-a770-c00ba0604100","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:55:13.3366914Z","submissionTimestamp":"2018-09-28T22:55:35.0918305Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"9e1eff9a-594f-4cf1-b133-0e4cc3b86710","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/9e1eff9a-594f-4cf1-b133-0e4cc3b86710/ticks/636737720980316948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"647c9ab2-e0ca-4ed5-b35b-f87b59b5670f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:58.0316948Z","submissionTimestamp":"2018-09-28T22:55:12.066879Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"bc00447e-a14b-405b-b1cb-ab42d1d10543","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/bc00447e-a14b-405b-b1cb-ab42d1d10543/ticks/636737720820496552","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aa6afa4a-1bf4-4346-b157-61535ac8c488","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:42.0496552Z","submissionTimestamp":"2018-09-28T22:55:08.1131424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"1b6f854b-1e7b-4e5c-a2fd-8470c014a70a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/1b6f854b-1e7b-4e5c-a2fd-8470c014a70a/ticks/636737720667079521","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"45d71741-7ce3-4c2a-afdc-24745e056e78","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:26.7079521Z","submissionTimestamp":"2018-09-28T22:54:42.0889825Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"6fcb88fd-9b87-48a3-95e7-798b6f7d83fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/6fcb88fd-9b87-48a3-95e7-798b6f7d83fe/ticks/636737720520883047","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c9b86cc1-4865-4a18-84a7-0c539d58d966","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:12.0883047Z","submissionTimestamp":"2018-09-28T22:54:36.0941838Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9/ticks/636737720349666780","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"9aa30ca4-a0e8-4e30-b27a-19dc202040bd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:54.966678Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"76f7d642-2c93-4ace-9204-3710b407fff0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/76f7d642-2c93-4ace-9204-3710b407fff0/ticks/636737720339979548","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:53.9979548Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"aeac72cc-e86c-4719-894b-f6f6fdc20d2d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/aeac72cc-e86c-4719-894b-f6f6fdc20d2d/ticks/636737720302718418","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"72323014-095a-4926-8173-5a2fe1812061","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9ad3b1cc-aa8b-4061-a77c-225d16aa30dc\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:50.2718418Z","submissionTimestamp":"2018-09-28T22:54:15.1459246Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ef63406c-bd10-4bda-a19e-d3bcad67d7a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/ef63406c-bd10-4bda-a19e-d3bcad67d7a8/ticks/636737720282093088","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:48.2093088Z","submissionTimestamp":"2018-09-28T22:54:05.1188407Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"b678ce79-236a-42d2-924a-466b0e04dbc4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/b678ce79-236a-42d2-924a-466b0e04dbc4/ticks/636737720132024462","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d3682df3-717a-46d9-bba2-2cce2765aa56","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:33.2024462Z","submissionTimestamp":"2018-09-28T22:53:52.1160866Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"5d0d3536-5256-4bf5-bfb5-746d4cd0552b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/5d0d3536-5256-4bf5-bfb5-746d4cd0552b/ticks/636737720108622906","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cdd817a0-1d54-4653-b2ba-3672d5220e2d","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:30.8622906Z","submissionTimestamp":"2018-09-28T22:53:53.0876121Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['68922'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:55:48 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586634316846100916?api-version=2018-05-01 - response: - body: {string: '{"status":"Running"}'} - headers: - cache-control: [no-cache] - content-length: ['20'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:55:53 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A55%3A59Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"13f65671-32cd-46ce-a2f8-0a502582024d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/13f65671-32cd-46ce-a2f8-0a502582024d/ticks/636737721290180958","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"3cf54ed1-96d1-43e3-9fd0-24fc5cea28e1","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:55:29.0180958Z","submissionTimestamp":"2018-09-28T22:55:51.1035254Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"95192f4d-c5d3-480d-aaef-819208eb1e8d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/95192f4d-c5d3-480d-aaef-819208eb1e8d/ticks/636737721133366914","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"032bf085-6bef-4b01-a770-c00ba0604100","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:55:13.3366914Z","submissionTimestamp":"2018-09-28T22:55:35.0918305Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"9e1eff9a-594f-4cf1-b133-0e4cc3b86710","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/9e1eff9a-594f-4cf1-b133-0e4cc3b86710/ticks/636737720980316948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"647c9ab2-e0ca-4ed5-b35b-f87b59b5670f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:58.0316948Z","submissionTimestamp":"2018-09-28T22:55:12.066879Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"bc00447e-a14b-405b-b1cb-ab42d1d10543","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/bc00447e-a14b-405b-b1cb-ab42d1d10543/ticks/636737720820496552","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aa6afa4a-1bf4-4346-b157-61535ac8c488","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:42.0496552Z","submissionTimestamp":"2018-09-28T22:55:08.1131424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"1b6f854b-1e7b-4e5c-a2fd-8470c014a70a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/1b6f854b-1e7b-4e5c-a2fd-8470c014a70a/ticks/636737720667079521","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"45d71741-7ce3-4c2a-afdc-24745e056e78","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:26.7079521Z","submissionTimestamp":"2018-09-28T22:54:42.0889825Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"6fcb88fd-9b87-48a3-95e7-798b6f7d83fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/6fcb88fd-9b87-48a3-95e7-798b6f7d83fe/ticks/636737720520883047","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c9b86cc1-4865-4a18-84a7-0c539d58d966","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:12.0883047Z","submissionTimestamp":"2018-09-28T22:54:36.0941838Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9/ticks/636737720349666780","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"9aa30ca4-a0e8-4e30-b27a-19dc202040bd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:54.966678Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"76f7d642-2c93-4ace-9204-3710b407fff0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/76f7d642-2c93-4ace-9204-3710b407fff0/ticks/636737720339979548","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:53.9979548Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"aeac72cc-e86c-4719-894b-f6f6fdc20d2d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/aeac72cc-e86c-4719-894b-f6f6fdc20d2d/ticks/636737720302718418","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"72323014-095a-4926-8173-5a2fe1812061","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9ad3b1cc-aa8b-4061-a77c-225d16aa30dc\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:50.2718418Z","submissionTimestamp":"2018-09-28T22:54:15.1459246Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ef63406c-bd10-4bda-a19e-d3bcad67d7a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/ef63406c-bd10-4bda-a19e-d3bcad67d7a8/ticks/636737720282093088","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:48.2093088Z","submissionTimestamp":"2018-09-28T22:54:05.1188407Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"b678ce79-236a-42d2-924a-466b0e04dbc4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/b678ce79-236a-42d2-924a-466b0e04dbc4/ticks/636737720132024462","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d3682df3-717a-46d9-bba2-2cce2765aa56","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:33.2024462Z","submissionTimestamp":"2018-09-28T22:53:52.1160866Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"5d0d3536-5256-4bf5-bfb5-746d4cd0552b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/5d0d3536-5256-4bf5-bfb5-746d4cd0552b/ticks/636737720108622906","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cdd817a0-1d54-4653-b2ba-3672d5220e2d","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:30.8622906Z","submissionTimestamp":"2018-09-28T22:53:53.0876121Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['72590'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:55:58 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A56%3A09Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"13f65671-32cd-46ce-a2f8-0a502582024d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/13f65671-32cd-46ce-a2f8-0a502582024d/ticks/636737721290180958","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"3cf54ed1-96d1-43e3-9fd0-24fc5cea28e1","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:55:29.0180958Z","submissionTimestamp":"2018-09-28T22:55:51.1035254Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"95192f4d-c5d3-480d-aaef-819208eb1e8d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/95192f4d-c5d3-480d-aaef-819208eb1e8d/ticks/636737721133366914","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"032bf085-6bef-4b01-a770-c00ba0604100","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:55:13.3366914Z","submissionTimestamp":"2018-09-28T22:55:35.0918305Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"9e1eff9a-594f-4cf1-b133-0e4cc3b86710","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/9e1eff9a-594f-4cf1-b133-0e4cc3b86710/ticks/636737720980316948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"647c9ab2-e0ca-4ed5-b35b-f87b59b5670f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:58.0316948Z","submissionTimestamp":"2018-09-28T22:55:12.066879Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"bc00447e-a14b-405b-b1cb-ab42d1d10543","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/bc00447e-a14b-405b-b1cb-ab42d1d10543/ticks/636737720820496552","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aa6afa4a-1bf4-4346-b157-61535ac8c488","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:42.0496552Z","submissionTimestamp":"2018-09-28T22:55:08.1131424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"1b6f854b-1e7b-4e5c-a2fd-8470c014a70a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/1b6f854b-1e7b-4e5c-a2fd-8470c014a70a/ticks/636737720667079521","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"45d71741-7ce3-4c2a-afdc-24745e056e78","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:26.7079521Z","submissionTimestamp":"2018-09-28T22:54:42.0889825Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"6fcb88fd-9b87-48a3-95e7-798b6f7d83fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/6fcb88fd-9b87-48a3-95e7-798b6f7d83fe/ticks/636737720520883047","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c9b86cc1-4865-4a18-84a7-0c539d58d966","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:12.0883047Z","submissionTimestamp":"2018-09-28T22:54:36.0941838Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9/ticks/636737720349666780","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"9aa30ca4-a0e8-4e30-b27a-19dc202040bd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:54.966678Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"76f7d642-2c93-4ace-9204-3710b407fff0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/76f7d642-2c93-4ace-9204-3710b407fff0/ticks/636737720339979548","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:53.9979548Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"aeac72cc-e86c-4719-894b-f6f6fdc20d2d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/aeac72cc-e86c-4719-894b-f6f6fdc20d2d/ticks/636737720302718418","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"72323014-095a-4926-8173-5a2fe1812061","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9ad3b1cc-aa8b-4061-a77c-225d16aa30dc\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:50.2718418Z","submissionTimestamp":"2018-09-28T22:54:15.1459246Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ef63406c-bd10-4bda-a19e-d3bcad67d7a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/ef63406c-bd10-4bda-a19e-d3bcad67d7a8/ticks/636737720282093088","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:48.2093088Z","submissionTimestamp":"2018-09-28T22:54:05.1188407Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"b678ce79-236a-42d2-924a-466b0e04dbc4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/b678ce79-236a-42d2-924a-466b0e04dbc4/ticks/636737720132024462","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d3682df3-717a-46d9-bba2-2cce2765aa56","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:33.2024462Z","submissionTimestamp":"2018-09-28T22:53:52.1160866Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"5d0d3536-5256-4bf5-bfb5-746d4cd0552b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/5d0d3536-5256-4bf5-bfb5-746d4cd0552b/ticks/636737720108622906","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cdd817a0-1d54-4653-b2ba-3672d5220e2d","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:30.8622906Z","submissionTimestamp":"2018-09-28T22:53:53.0876121Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['72590'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:56:09 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python - AZURECLI/2.0.47] - 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%202018-08-18T06%3A56%3A20Z%20and%20correlationId%20eq%20%27345f5699-7eb9-4335-bb6e-52bd40b853e5%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d3025f4-d242-4839-a1bc-06b2fbeaba1f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d3025f4-d242-4839-a1bc-06b2fbeaba1f/ticks/636737721583019125","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"0e9f239b-a38e-4270-8c86-9e2346d1e693","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:55:58.3019125Z","submissionTimestamp":"2018-09-28T22:56:14.1016201Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"13f65671-32cd-46ce-a2f8-0a502582024d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/13f65671-32cd-46ce-a2f8-0a502582024d/ticks/636737721290180958","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"3cf54ed1-96d1-43e3-9fd0-24fc5cea28e1","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:55:29.0180958Z","submissionTimestamp":"2018-09-28T22:55:51.1035254Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"95192f4d-c5d3-480d-aaef-819208eb1e8d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/95192f4d-c5d3-480d-aaef-819208eb1e8d/ticks/636737721133366914","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"032bf085-6bef-4b01-a770-c00ba0604100","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:55:13.3366914Z","submissionTimestamp":"2018-09-28T22:55:35.0918305Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"9e1eff9a-594f-4cf1-b133-0e4cc3b86710","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/9e1eff9a-594f-4cf1-b133-0e4cc3b86710/ticks/636737720980316948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"647c9ab2-e0ca-4ed5-b35b-f87b59b5670f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:58.0316948Z","submissionTimestamp":"2018-09-28T22:55:12.066879Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"bc00447e-a14b-405b-b1cb-ab42d1d10543","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/bc00447e-a14b-405b-b1cb-ab42d1d10543/ticks/636737720820496552","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aa6afa4a-1bf4-4346-b157-61535ac8c488","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:42.0496552Z","submissionTimestamp":"2018-09-28T22:55:08.1131424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"1b6f854b-1e7b-4e5c-a2fd-8470c014a70a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/1b6f854b-1e7b-4e5c-a2fd-8470c014a70a/ticks/636737720667079521","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"45d71741-7ce3-4c2a-afdc-24745e056e78","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:26.7079521Z","submissionTimestamp":"2018-09-28T22:54:42.0889825Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"6fcb88fd-9b87-48a3-95e7-798b6f7d83fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/6fcb88fd-9b87-48a3-95e7-798b6f7d83fe/ticks/636737720520883047","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c9b86cc1-4865-4a18-84a7-0c539d58d966","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:54:12.0883047Z","submissionTimestamp":"2018-09-28T22:54:36.0941838Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/ba7f0c7b-3b9f-462f-8e0f-de7aacf89cb9/ticks/636737720349666780","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"9aa30ca4-a0e8-4e30-b27a-19dc202040bd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:54.966678Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"76f7d642-2c93-4ace-9204-3710b407fff0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b849dc6-e7b5-46dd-9ee0-6164b3a6d6a1","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/76f7d642-2c93-4ace-9204-3710b407fff0/ticks/636737720339979548","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"717e0337-9390-4f57-98de-38f4e6d50c0a","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:53.9979548Z","submissionTimestamp":"2018-09-28T22:54:10.1174097Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"aeac72cc-e86c-4719-894b-f6f6fdc20d2d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/aeac72cc-e86c-4719-894b-f6f6fdc20d2d/ticks/636737720302718418","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"72323014-095a-4926-8173-5a2fe1812061","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9ad3b1cc-aa8b-4061-a77c-225d16aa30dc\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"bdf71bf5-4859-43ef-8cbd-456c95922860\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-09-28T22:53:50.2718418Z","submissionTimestamp":"2018-09-28T22:54:15.1459246Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"ef63406c-bd10-4bda-a19e-d3bcad67d7a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ffcb0e-86df-48b0-9434-4ca2858ed274","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/ef63406c-bd10-4bda-a19e-d3bcad67d7a8/ticks/636737720282093088","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"56e48b78-4d6e-41d8-8457-95d450f56e5e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:48.2093088Z","submissionTimestamp":"2018-09-28T22:54:05.1188407Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"b678ce79-236a-42d2-924a-466b0e04dbc4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/b678ce79-236a-42d2-924a-466b0e04dbc4/ticks/636737720132024462","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d3682df3-717a-46d9-bba2-2cce2765aa56","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:33.2024462Z","submissionTimestamp":"2018-09-28T22:53:52.1160866Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"5d0d3536-5256-4bf5-bfb5-746d4cd0552b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/5d0d3536-5256-4bf5-bfb5-746d4cd0552b/ticks/636737720108622906","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cdd817a0-1d54-4653-b2ba-3672d5220e2d","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:30.8622906Z","submissionTimestamp":"2018-09-28T22:53:53.0876121Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"f11aa4e2-7df6-4cb7-b80f-d0d578d036fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/f11aa4e2-7df6-4cb7-b80f-d0d578d036fc/ticks/636737720076904549","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"e617896e-2101-4a0b-ba13-ecd8d7706d56","responseBody":"{\"name\":\"vmss1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47eeb24c-6b66-4706-b5d5-653f09a4c537\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\"etag\":\"W/\\\"357b76b2-a5b6-4e9d-852b-8868a189921b\\\"\",\"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":"2018-09-28T22:53:27.6904549Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"a2b89949-8eff-45fb-bce6-362a4c92ad12","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/a2b89949-8eff-45fb-bce6-362a4c92ad12/ticks/636737720073984647","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7aa3ec7f-89e8-49df-b1f0-656d6a1d8191","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"3b3beb4f-aa06-4b02-870d-683786e1198d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"35592511-bb39-4d3c-b5b5-bfb4a105a948\",\"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":"2018-09-28T22:53:27.3984647Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"36032395-d376-47e4-9686-18a5ba443437","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3db928a6-fb46-4a16-b772-ee7ecffb722a","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/events/36032395-d376-47e4-9686-18a5ba443437/ticks/636737720066904135","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"b4d67043-d7a8-4991-9c9d-fda0ba47622c","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vmss1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.6904135Z","submissionTimestamp":"2018-09-28T22:53:43.0997993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"04be946f-dce0-4e24-8025-93d3d66f3d8f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b9f44df3-e248-407f-86da-75388b64be0d","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/04be946f-dce0-4e24-8025-93d3d66f3d8f/ticks/636737720064766239","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e3c7623e-441f-4dd4-a100-05eb5b83b072","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:26.4766239Z","submissionTimestamp":"2018-09-28T22:53:42.097753Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"17161f85-f9a8-447c-88ba-80b6d1eb7867","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/17161f85-f9a8-447c-88ba-80b6d1eb7867/ticks/636737720018368948","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","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":"2018-09-28T22:53:21.8368948Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1538174654","nbf":"1538174654","exp":"1538178554","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8IAAAAecSil7dp92chgGlDerriEGR3N1OxkBvTTCPfDcvMS4xXHh4llZY+Gp1oFuuWi6hUuz7XyaHnSsx0tq4WxMnx4yZ7DNEixEckYkUnV7pKuSw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.159.32","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"pu9yrvUAYkKwCbLDwEUFAA","ver":"1.0"},"correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","description":"","eventDataId":"0d7810f5-fbc7-40ab-bc8c-bcedbbde5632","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a4e15d8-c371-11e8-b416-88e9fe6691ee","clientIpAddress":"167.220.2.32","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L/events/0d7810f5-fbc7-40ab-bc8c-bcedbbde5632/ticks/636737719993367992","level":"Informational","resourceGroupName":"cli_test_vmss_create_options000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-09-28T22:53:19.3367992Z","submissionTimestamp":"2018-09-28T22:53:46.1294682Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['76191'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:56:20 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586634316846100916?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592731588779441?api-version=2018-05-01 response: body: {string: '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:56:23 GMT'] + date: ['Fri, 16 Nov 2018 02:04:39 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1629,18 +321,18 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--image --admin-username --admin-password -l -g -n --storage-sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","name":"vmss_deploy_omTwKwnVDuIELfm3Da7w3b3vsOBuwu2L","properties":{"templateHash":"3064010448383018007","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-09-28T22:55:58.048179Z","duration":"PT2M37.1806387S","correlationId":"345f5699-7eb9-4335-bb6e-52bd40b853e5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1f87d","adminUsername":"clitest1","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"credativ","offer":"Debian","sku":"8","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1f87dNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1f87dIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"uniqueId":"52df236b-2735-46f1-a84c-9cf2cc6fd0f8"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_CjBgXQKt5RZB33gCeyLwT0z2NdBMeh0d","name":"vmss_deploy_CjBgXQKt5RZB33gCeyLwT0z2NdBMeh0d","properties":{"templateHash":"12158275929926177698","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-16T02:04:38.6409282Z","duration":"PT2M32.0412397S","correlationId":"fcaff251-18a3-49c7-8f7a-36aad15286f7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1d466","adminUsername":"clitest1","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"credativ","offer":"Debian","sku":"8","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1d466Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1d466IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"uniqueId":"571e59be-4f73-4a13-a4c9-e50c7969c501"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}'} headers: cache-control: [no-cache] - content-length: ['5279'] + content-length: ['5281'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:56:24 GMT'] + date: ['Fri, 16 Nov 2018 02:04:39 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1655,19 +347,19 @@ interactions: CommandName: [disk create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --size-gb --sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001","name":"cli_test_vmss_create_options000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-09-28T22:53:16Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001","name":"cli_test_vmss_create_options000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-16T02:02:03Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:56:25 GMT'] + date: ['Fri, 16 Nov 2018 02:04:39 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1684,9 +376,9 @@ interactions: Connection: [keep-alive] Content-Length: ['143'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --size-gb --sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1?api-version=2018-06-01 @@ -1697,19 +389,19 @@ interactions: : \"Updating\",\r\n \"isArmResource\": true\r\n },\r\n \"location\":\ \ \"westus\",\r\n \"tags\": {},\r\n \"name\": \"d1\"\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4e5f179b-cad8-4058-b66e-baee06e78b67?api-version=2018-06-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8a52679a-32eb-42c4-8e49-6414768d1d3e?api-version=2018-06-01'] cache-control: [no-cache] content-length: ['280'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:56:26 GMT'] + date: ['Fri, 16 Nov 2018 02:04:41 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4e5f179b-cad8-4058-b66e-baee06e78b67?monitor=true&api-version=2018-06-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8a52679a-32eb-42c4-8e49-6414768d1d3e?monitor=true&api-version=2018-06-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;3987'] - x-ms-ratelimit-remaining-subscription-writes: ['1193'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;3999'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -1718,27 +410,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [disk create] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --size-gb --sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4e5f179b-cad8-4058-b66e-baee06e78b67?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8a52679a-32eb-42c4-8e49-6414768d1d3e?api-version=2018-06-01 response: - body: {string: "{\r\n \"startTime\": \"2018-09-28T22:56:26.9377878+00:00\",\r\ - \n \"endTime\": \"2018-09-28T22:56:27.0480566+00:00\",\r\n \"status\": \"\ + body: {string: "{\r\n \"startTime\": \"2018-11-16T02:04:42.3790648+00:00\",\r\ + \n \"endTime\": \"2018-11-16T02:04:42.5665717+00:00\",\r\n \"status\": \"\ Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"sku\":{\"name\"\ :\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\"\ - :{\"createOption\":\"Empty\"},\"diskSizeGB\":1,\"timeCreated\":\"2018-09-28T22:56:26.9377878+00:00\"\ + :{\"createOption\":\"Empty\"},\"diskSizeGB\":1,\"timeCreated\":\"2018-11-16T02:04:42.3790648+00:00\"\ ,\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"},\"type\"\ :\"Microsoft.Compute/disks\",\"location\":\"westus\",\"tags\":{},\"id\":\"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\ - ,\"name\":\"d1\"}\r\n },\r\n \"name\": \"4e5f179b-cad8-4058-b66e-baee06e78b67\"\ + ,\"name\":\"d1\"}\r\n },\r\n \"name\": \"8a52679a-32eb-42c4-8e49-6414768d1d3e\"\ \r\n}"} headers: cache-control: [no-cache] content-length: ['713'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:56:57 GMT'] + date: ['Fri, 16 Nov 2018 02:05:12 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1746,7 +438,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;249927'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;249989'] status: {code: 200, message: OK} - request: body: null @@ -1755,16 +447,16 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [disk create] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --size-gb --sku] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1?api-version=2018-06-01 response: body: {string: "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"\ tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\"\ : {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\":\ - \ 1,\r\n \"timeCreated\": \"2018-09-28T22:56:26.9377878+00:00\",\r\n \ + \ 1,\r\n \"timeCreated\": \"2018-11-16T02:04:42.3790648+00:00\",\r\n \ \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\ \r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"\ westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\ @@ -1773,7 +465,7 @@ interactions: cache-control: [no-cache] content-length: ['597'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:56:58 GMT'] + date: ['Fri, 16 Nov 2018 02:05:12 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1781,7 +473,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;19930'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;19991'] status: {code: 200, message: OK} - request: body: null @@ -1790,69 +482,69 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss list-instances] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines?api-version=2018-10-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"instanceId\": \"0\",\r\ + body: {string: "{\r\n \"value\": [\r\n {\r\n \"instanceId\": \"1\",\r\ \n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"\ tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"\ - latestModelApplied\": true,\r\n \"vmId\": \"724f051f-e716-42fa-9eb6-ec6a3aaa33ca\"\ + latestModelApplied\": true,\r\n \"vmId\": \"e2f06d8d-079f-4093-a0fc-06afa69ed7fd\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n\ \ \"imageReference\": {\r\n \"publisher\": \"credativ\"\ ,\r\n \"offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n\ \ \"version\": \"8.0.201807160\"\r\n },\r\n \"\ osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\",\r\n \ + : \"vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\",\r\n \ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \ \ \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n\ - \ \"computerName\": \"vmss1f87d000000\",\r\n \"adminUsername\"\ + \ \"computerName\": \"vmss1d466000001\",\r\n \"adminUsername\"\ : \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \ \ \"secrets\": [],\r\n \"allowExtensionOperations\": true\r\ \n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1f87dNic\"\ - }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \ - \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSF3HZLFC4DBSLXNGMA67FYK6UB32MXU5OURQIMIE64ZEPPX4/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\"\ - ,\r\n \"name\": \"vmss1_0\"\r\n },\r\n {\r\n \"instanceId\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1d466Nic\"\ + }]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"\ + type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n\ + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSYFEB2ZKSBHIYKZZHCVUVB4U3EYWH3H7NZXZPFXOXXLFAFZS/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\"\ + ,\r\n \"name\": \"vmss1_1\"\r\n },\r\n {\r\n \"instanceId\"\ : \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n\ \ \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n\ - \ \"latestModelApplied\": true,\r\n \"vmId\": \"365b05f6-c0f6-4b4a-b15d-2293b23f9f90\"\ + \ \"latestModelApplied\": true,\r\n \"vmId\": \"21a4e1d7-e01f-4518-8ff4-65fc66a2fb5f\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n\ \ \"imageReference\": {\r\n \"publisher\": \"credativ\"\ ,\r\n \"offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n\ \ \"version\": \"8.0.201807160\"\r\n },\r\n \"\ osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"vmss1_vmss1_3_OsDisk_1_d4879ea685bb4a8abc0d5946904a5f21\",\r\n \ + : \"vmss1_vmss1_3_OsDisk_1_008582bbbee647fb8961e0187b27bcde\",\r\n \ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_3_OsDisk_1_d4879ea685bb4a8abc0d5946904a5f21\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_3_OsDisk_1_008582bbbee647fb8961e0187b27bcde\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \ \ \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n\ - \ \"computerName\": \"vmss1f87d000003\",\r\n \"adminUsername\"\ + \ \"computerName\": \"vmss1d466000003\",\r\n \"adminUsername\"\ : \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \ \ \"secrets\": [],\r\n \"allowExtensionOperations\": true\r\ \n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1f87dNic\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1d466Nic\"\ }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \ \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSF3HZLFC4DBSLXNGMA67FYK6UB32MXU5OURQIMIE64ZEPPX4/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSYFEB2ZKSBHIYKZZHCVUVB4U3EYWH3H7NZXZPFXOXXLFAFZS/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3\"\ ,\r\n \"name\": \"vmss1_3\"\r\n }\r\n ]\r\n}"} headers: cache-control: [no-cache] - content-length: ['4462'] + content-length: ['4461'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:56:59 GMT'] + date: ['Fri, 16 Nov 2018 02:05:14 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1860,7 +552,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/HighCostGetVMScaleSet3Min;173,Microsoft.Compute/HighCostGetVMScaleSet30Min;863,Microsoft.Compute/VMScaleSetVMViews3Min;4982'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/HighCostGetVMScaleSet3Min;177,Microsoft.Compute/HighCostGetVMScaleSet30Min;880,Microsoft.Compute/VMScaleSetVMViews3Min;4988'] x-ms-request-charge: ['4'] status: {code: 200, message: OK} - request: @@ -1870,40 +562,40 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss disk attach] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --instance-id --disk --caching] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/1?api-version=2018-10-01 response: - body: {string: "{\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n \"name\"\ + body: {string: "{\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\"\ : \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\"\ - : {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"724f051f-e716-42fa-9eb6-ec6a3aaa33ca\"\ + : {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"e2f06d8d-079f-4093-a0fc-06afa69ed7fd\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"\ imageReference\": {\r\n \"publisher\": \"credativ\",\r\n \"\ offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n \"version\": \"\ 8.0.201807160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":\ - \ \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + \ \"Linux\",\r\n \"name\": \"vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1f87d000000\"\ + : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1d466000001\"\ ,\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1f87dNic\"\ - }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1d466Nic\"\ + }]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"\ Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\"\ - ,\r\n \"name\": \"vmss1_0\"\r\n}"} + : \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\"\ + ,\r\n \"name\": \"vmss1_1\"\r\n}"} headers: cache-control: [no-cache] - content-length: ['2021'] + content-length: ['2020'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:57:00 GMT'] + date: ['Fri, 16 Nov 2018 02:05:14 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1911,22 +603,22 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSetVM3Min;499,Microsoft.Compute/GetVMScaleSetVM30Min;2498,Microsoft.Compute/VMScaleSetVMViews3Min;4981'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSetVM3Min;499,Microsoft.Compute/GetVMScaleSetVM30Min;2498,Microsoft.Compute/VMScaleSetVMViews3Min;4987'] x-ms-request-charge: ['1'] status: {code: 200, message: OK} - request: body: 'b''{"location": "westus", "tags": {}, "properties": {"hardwareProfile": {}, "storageProfile": {"imageReference": {"publisher": "credativ", "offer": "Debian", "sku": "8", "version": "8.0.201807160"}, "osDisk": {"osType": "Linux", - "name": "vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95", "caching": + "name": "vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee", "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95", + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee", "storageAccountType": "Standard_LRS"}}, "dataDisks": [{"lun": 0, "caching": "ReadWrite", "createOption": "Attach", "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1"}}]}, - "osProfile": {"computerName": "vmss1f87d000000", "adminUsername": "clitest1", + "osProfile": {"computerName": "vmss1d466000001", "adminUsername": "clitest1", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true}, "networkProfile": {"networkInterfaces": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1f87dNic"}]}}}''' + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1d466Nic"}]}}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1934,46 +626,46 @@ interactions: Connection: [keep-alive] Content-Length: ['1468'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --instance-id --disk --caching] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/1?api-version=2018-10-01 response: - body: {string: "{\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n \"name\"\ + body: {string: "{\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\"\ : \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\"\ - : {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"724f051f-e716-42fa-9eb6-ec6a3aaa33ca\"\ + : {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"e2f06d8d-079f-4093-a0fc-06afa69ed7fd\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"\ imageReference\": {\r\n \"publisher\": \"credativ\",\r\n \"\ offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n \"version\": \"\ 8.0.201807160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":\ - \ \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + \ \"Linux\",\r\n \"name\": \"vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"d1\",\r\ \n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\ \r\n },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n\ - \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1f87d000000\"\ + \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1d466000001\"\ ,\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1f87dNic\"\ - }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1d466Nic\"\ + }]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"\ Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\"\ - ,\r\n \"name\": \"vmss1_0\"\r\n}"} + : \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\"\ + ,\r\n \"name\": \"vmss1_1\"\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b92af7de-9b61-4cf7-8a1a-ef61925a661a?api-version=2018-10-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f8ee0da9-66fb-482a-a3f1-903298bee86d?api-version=2018-10-01'] cache-control: [no-cache] - content-length: ['2490'] + content-length: ['2489'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:57:02 GMT'] + date: ['Fri, 16 Nov 2018 02:05:16 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -1981,8 +673,8 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1195,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1180,Microsoft.Compute/VmssQueuedVMOperations;4799'] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1199,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1191,Microsoft.Compute/VmssQueuedVMOperations;4799'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] x-ms-request-charge: ['1'] status: {code: 200, message: OK} - request: @@ -1992,50 +684,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss disk attach] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b92af7de-9b61-4cf7-8a1a-ef61925a661a?api-version=2018-10-01 - response: - body: {string: "{\r\n \"startTime\": \"2018-09-28T22:57:02.7766278+00:00\",\r\ - \n \"status\": \"InProgress\",\r\n \"name\": \"b92af7de-9b61-4cf7-8a1a-ef61925a661a\"\ - \r\n}"} - headers: - cache-control: [no-cache] - content-length: ['134'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:57:33 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29606'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss disk attach] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --instance-id --disk --caching] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b92af7de-9b61-4cf7-8a1a-ef61925a661a?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f8ee0da9-66fb-482a-a3f1-903298bee86d?api-version=2018-10-01 response: - body: {string: "{\r\n \"startTime\": \"2018-09-28T22:57:02.7766278+00:00\",\r\ - \n \"endTime\": \"2018-09-28T22:57:37.8538427+00:00\",\r\n \"status\": \"\ - Succeeded\",\r\n \"name\": \"b92af7de-9b61-4cf7-8a1a-ef61925a661a\"\r\n}"} + body: {string: "{\r\n \"startTime\": \"2018-11-16T02:05:16.5453618+00:00\",\r\ + \n \"endTime\": \"2018-11-16T02:05:28.1078671+00:00\",\r\n \"status\": \"\ + Succeeded\",\r\n \"name\": \"f8ee0da9-66fb-482a-a3f1-903298bee86d\"\r\n}"} headers: cache-control: [no-cache] content-length: ['184'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:58:03 GMT'] + date: ['Fri, 16 Nov 2018 02:05:46 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2043,7 +705,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29602'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29851'] status: {code: 200, message: OK} - request: body: null @@ -2052,44 +714,44 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss disk attach] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --instance-id --disk --caching] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/1?api-version=2018-10-01 response: - body: {string: "{\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n \"name\"\ + body: {string: "{\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\"\ : \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\"\ - : {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"724f051f-e716-42fa-9eb6-ec6a3aaa33ca\"\ + : {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"e2f06d8d-079f-4093-a0fc-06afa69ed7fd\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"\ imageReference\": {\r\n \"publisher\": \"credativ\",\r\n \"\ offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n \"version\": \"\ 8.0.201807160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":\ - \ \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + \ \"Linux\",\r\n \"name\": \"vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"d1\",\r\ \n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\ \r\n },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n\ - \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1f87d000000\"\ + \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1d466000001\"\ ,\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1f87dNic\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1d466Nic\"\ }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"\ Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\"\ - ,\r\n \"name\": \"vmss1_0\"\r\n}"} + : \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\"\ + ,\r\n \"name\": \"vmss1_1\"\r\n}"} headers: cache-control: [no-cache] content-length: ['2490'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:58:04 GMT'] + date: ['Fri, 16 Nov 2018 02:05:47 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2097,7 +759,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSetVM3Min;498,Microsoft.Compute/GetVMScaleSetVM30Min;2497,Microsoft.Compute/VMScaleSetVMViews3Min;4980'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSetVM3Min;498,Microsoft.Compute/GetVMScaleSetVM30Min;2497,Microsoft.Compute/VMScaleSetVMViews3Min;4986'] x-ms-request-charge: ['1'] status: {code: 200, message: OK} - request: @@ -2107,26 +769,26 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss list-instances] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --query] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines?api-version=2018-10-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"instanceId\": \"0\",\r\ + body: {string: "{\r\n \"value\": [\r\n {\r\n \"instanceId\": \"1\",\r\ \n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"\ tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"\ - latestModelApplied\": true,\r\n \"vmId\": \"724f051f-e716-42fa-9eb6-ec6a3aaa33ca\"\ + latestModelApplied\": true,\r\n \"vmId\": \"e2f06d8d-079f-4093-a0fc-06afa69ed7fd\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n\ \ \"imageReference\": {\r\n \"publisher\": \"credativ\"\ ,\r\n \"offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n\ \ \"version\": \"8.0.201807160\"\r\n },\r\n \"\ osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\",\r\n \ + : \"vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\",\r\n \ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \ \ \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\ \n \"name\": \"d1\",\r\n \"createOption\": \"Attach\"\ @@ -2135,47 +797,47 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\ \r\n },\r\n \"diskSizeGB\": 1\r\n }\r\ \n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\"\ - : \"vmss1f87d000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \ + : \"vmss1d466000001\",\r\n \"adminUsername\": \"clitest1\",\r\n \ \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \ \ \"secrets\": [],\r\n \"allowExtensionOperations\": true\r\ \n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1f87dNic\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1d466Nic\"\ }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \ \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSF3HZLFC4DBSLXNGMA67FYK6UB32MXU5OURQIMIE64ZEPPX4/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\"\ - ,\r\n \"name\": \"vmss1_0\"\r\n },\r\n {\r\n \"instanceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSYFEB2ZKSBHIYKZZHCVUVB4U3EYWH3H7NZXZPFXOXXLFAFZS/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\"\ + ,\r\n \"name\": \"vmss1_1\"\r\n },\r\n {\r\n \"instanceId\"\ : \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n\ \ \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n\ - \ \"latestModelApplied\": true,\r\n \"vmId\": \"365b05f6-c0f6-4b4a-b15d-2293b23f9f90\"\ + \ \"latestModelApplied\": true,\r\n \"vmId\": \"21a4e1d7-e01f-4518-8ff4-65fc66a2fb5f\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n\ \ \"imageReference\": {\r\n \"publisher\": \"credativ\"\ ,\r\n \"offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n\ \ \"version\": \"8.0.201807160\"\r\n },\r\n \"\ osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"vmss1_vmss1_3_OsDisk_1_d4879ea685bb4a8abc0d5946904a5f21\",\r\n \ + : \"vmss1_vmss1_3_OsDisk_1_008582bbbee647fb8961e0187b27bcde\",\r\n \ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_3_OsDisk_1_d4879ea685bb4a8abc0d5946904a5f21\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_3_OsDisk_1_008582bbbee647fb8961e0187b27bcde\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \ \ \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n\ - \ \"computerName\": \"vmss1f87d000003\",\r\n \"adminUsername\"\ + \ \"computerName\": \"vmss1d466000003\",\r\n \"adminUsername\"\ : \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \ \ \"secrets\": [],\r\n \"allowExtensionOperations\": true\r\ \n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1f87dNic\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1d466Nic\"\ }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \ \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSF3HZLFC4DBSLXNGMA67FYK6UB32MXU5OURQIMIE64ZEPPX4/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSYFEB2ZKSBHIYKZZHCVUVB4U3EYWH3H7NZXZPFXOXXLFAFZS/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3\"\ ,\r\n \"name\": \"vmss1_3\"\r\n }\r\n ]\r\n}"} headers: cache-control: [no-cache] content-length: ['4979'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:58:06 GMT'] + date: ['Fri, 16 Nov 2018 02:05:47 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2183,7 +845,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/HighCostGetVMScaleSet3Min;172,Microsoft.Compute/HighCostGetVMScaleSet30Min;862,Microsoft.Compute/VMScaleSetVMViews3Min;4978'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/HighCostGetVMScaleSet3Min;176,Microsoft.Compute/HighCostGetVMScaleSet30Min;879,Microsoft.Compute/VMScaleSetVMViews3Min;4984'] x-ms-request-charge: ['2'] status: {code: 200, message: OK} - request: @@ -2193,45 +855,45 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss disk detach] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --instance-id --lun] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/1?api-version=2018-10-01 response: - body: {string: "{\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n \"name\"\ + body: {string: "{\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\"\ : \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\"\ - : {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"724f051f-e716-42fa-9eb6-ec6a3aaa33ca\"\ + : {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"e2f06d8d-079f-4093-a0fc-06afa69ed7fd\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"\ imageReference\": {\r\n \"publisher\": \"credativ\",\r\n \"\ offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n \"version\": \"\ 8.0.201807160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":\ - \ \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + \ \"Linux\",\r\n \"name\": \"vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"d1\",\r\ \n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\ \r\n },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n\ - \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1f87d000000\"\ + \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1d466000001\"\ ,\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1f87dNic\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1d466Nic\"\ }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"\ Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\"\ - ,\r\n \"name\": \"vmss1_0\"\r\n}"} + : \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\"\ + ,\r\n \"name\": \"vmss1_1\"\r\n}"} headers: cache-control: [no-cache] content-length: ['2490'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:58:07 GMT'] + date: ['Fri, 16 Nov 2018 02:05:49 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2239,20 +901,20 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2496,Microsoft.Compute/VMScaleSetVMViews3Min;4977'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2496,Microsoft.Compute/VMScaleSetVMViews3Min;4983'] x-ms-request-charge: ['1'] status: {code: 200, message: OK} - request: body: 'b''{"location": "westus", "tags": {}, "properties": {"hardwareProfile": {}, "storageProfile": {"imageReference": {"publisher": "credativ", "offer": "Debian", "sku": "8", "version": "8.0.201807160"}, "osDisk": {"osType": "Linux", - "name": "vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95", "caching": + "name": "vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee", "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95", + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee", "storageAccountType": "Standard_LRS"}}, "dataDisks": []}, "osProfile": {"computerName": - "vmss1f87d000000", "adminUsername": "clitest1", "linuxConfiguration": {"disablePasswordAuthentication": + "vmss1d466000001", "adminUsername": "clitest1", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": - true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1f87dNic"}]}}}''' + true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1d466Nic"}]}}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -2260,41 +922,41 @@ interactions: Connection: [keep-alive] Content-Length: ['1202'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --instance-id --lun] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/1?api-version=2018-10-01 response: - body: {string: "{\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n \"name\"\ + body: {string: "{\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\"\ : \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\"\ - : {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"724f051f-e716-42fa-9eb6-ec6a3aaa33ca\"\ + : {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"e2f06d8d-079f-4093-a0fc-06afa69ed7fd\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"\ imageReference\": {\r\n \"publisher\": \"credativ\",\r\n \"\ offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n \"version\": \"\ 8.0.201807160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":\ - \ \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + \ \"Linux\",\r\n \"name\": \"vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1f87d000000\"\ + : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1d466000001\"\ ,\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1f87dNic\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1d466Nic\"\ }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"\ Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\"\ - ,\r\n \"name\": \"vmss1_0\"\r\n}"} + : \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\"\ + ,\r\n \"name\": \"vmss1_1\"\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/170ce8bc-7eda-4733-9043-66846015a26f?api-version=2018-10-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6a2cd06d-a063-4ef2-857d-6edb52429ab3?api-version=2018-10-01'] cache-control: [no-cache] content-length: ['2021'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:58:08 GMT'] + date: ['Fri, 16 Nov 2018 02:05:50 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2302,8 +964,8 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1194,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1185,Microsoft.Compute/VmssQueuedVMOperations;4799'] - x-ms-ratelimit-remaining-subscription-writes: ['1193'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1190,Microsoft.Compute/VmssQueuedVMOperations;4799'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] x-ms-request-charge: ['1'] status: {code: 200, message: OK} - request: @@ -2313,20 +975,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss disk detach] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --instance-id --lun] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/170ce8bc-7eda-4733-9043-66846015a26f?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6a2cd06d-a063-4ef2-857d-6edb52429ab3?api-version=2018-10-01 response: - body: {string: "{\r\n \"startTime\": \"2018-09-28T22:58:08.9108226+00:00\",\r\ - \n \"endTime\": \"2018-09-28T22:58:39.1350374+00:00\",\r\n \"status\": \"\ - Succeeded\",\r\n \"name\": \"170ce8bc-7eda-4733-9043-66846015a26f\"\r\n}"} + body: {string: "{\r\n \"startTime\": \"2018-11-16T02:05:51.1102069+00:00\",\r\ + \n \"endTime\": \"2018-11-16T02:06:11.7508333+00:00\",\r\n \"status\": \"\ + Succeeded\",\r\n \"name\": \"6a2cd06d-a063-4ef2-857d-6edb52429ab3\"\r\n}"} headers: cache-control: [no-cache] content-length: ['184'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:58:39 GMT'] + date: ['Fri, 16 Nov 2018 02:06:20 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2334,7 +996,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29593'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29850'] status: {code: 200, message: OK} - request: body: null @@ -2343,39 +1005,39 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss disk detach] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --instance-id --lun] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/1?api-version=2018-10-01 response: - body: {string: "{\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n \"name\"\ + body: {string: "{\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\"\ : \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\"\ - : {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"724f051f-e716-42fa-9eb6-ec6a3aaa33ca\"\ + : {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"e2f06d8d-079f-4093-a0fc-06afa69ed7fd\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"\ imageReference\": {\r\n \"publisher\": \"credativ\",\r\n \"\ offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n \"version\": \"\ 8.0.201807160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":\ - \ \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + \ \"Linux\",\r\n \"name\": \"vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1f87d000000\"\ + : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1d466000001\"\ ,\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1f87dNic\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1d466Nic\"\ }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"\ Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\"\ - ,\r\n \"name\": \"vmss1_0\"\r\n}"} + : \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\"\ + ,\r\n \"name\": \"vmss1_1\"\r\n}"} headers: cache-control: [no-cache] content-length: ['2021'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:58:39 GMT'] + date: ['Fri, 16 Nov 2018 02:06:21 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2383,7 +1045,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSetVM3Min;496,Microsoft.Compute/GetVMScaleSetVM30Min;2495,Microsoft.Compute/VMScaleSetVMViews3Min;4984'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSetVM3Min;496,Microsoft.Compute/GetVMScaleSetVM30Min;2495,Microsoft.Compute/VMScaleSetVMViews3Min;4982'] x-ms-request-charge: ['1'] status: {code: 200, message: OK} - request: @@ -2393,69 +1055,69 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss list-instances] Connection: [keep-alive] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 computemanagementclient/4.3.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [-g -n --query] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines?api-version=2018-10-01 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"instanceId\": \"0\",\r\ + body: {string: "{\r\n \"value\": [\r\n {\r\n \"instanceId\": \"1\",\r\ \n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"\ tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"\ - latestModelApplied\": true,\r\n \"vmId\": \"724f051f-e716-42fa-9eb6-ec6a3aaa33ca\"\ + latestModelApplied\": true,\r\n \"vmId\": \"e2f06d8d-079f-4093-a0fc-06afa69ed7fd\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n\ \ \"imageReference\": {\r\n \"publisher\": \"credativ\"\ ,\r\n \"offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n\ \ \"version\": \"8.0.201807160\"\r\n },\r\n \"\ osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\",\r\n \ + : \"vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\",\r\n \ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_242f8cec109147198bac4d6697355b95\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_114aa59c859b4be29a45258341bc38ee\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \ \ \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n\ - \ \"computerName\": \"vmss1f87d000000\",\r\n \"adminUsername\"\ + \ \"computerName\": \"vmss1d466000001\",\r\n \"adminUsername\"\ : \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \ \ \"secrets\": [],\r\n \"allowExtensionOperations\": true\r\ \n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1f87dNic\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1d466Nic\"\ }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \ \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSF3HZLFC4DBSLXNGMA67FYK6UB32MXU5OURQIMIE64ZEPPX4/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\"\ - ,\r\n \"name\": \"vmss1_0\"\r\n },\r\n {\r\n \"instanceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSYFEB2ZKSBHIYKZZHCVUVB4U3EYWH3H7NZXZPFXOXXLFAFZS/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\"\ + ,\r\n \"name\": \"vmss1_1\"\r\n },\r\n {\r\n \"instanceId\"\ : \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n\ \ \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n\ - \ \"latestModelApplied\": true,\r\n \"vmId\": \"365b05f6-c0f6-4b4a-b15d-2293b23f9f90\"\ + \ \"latestModelApplied\": true,\r\n \"vmId\": \"21a4e1d7-e01f-4518-8ff4-65fc66a2fb5f\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n\ \ \"imageReference\": {\r\n \"publisher\": \"credativ\"\ ,\r\n \"offer\": \"Debian\",\r\n \"sku\": \"8\",\r\n\ \ \"version\": \"8.0.201807160\"\r\n },\r\n \"\ osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"vmss1_vmss1_3_OsDisk_1_d4879ea685bb4a8abc0d5946904a5f21\",\r\n \ + : \"vmss1_vmss1_3_OsDisk_1_008582bbbee647fb8961e0187b27bcde\",\r\n \ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_3_OsDisk_1_d4879ea685bb4a8abc0d5946904a5f21\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_3_OsDisk_1_008582bbbee647fb8961e0187b27bcde\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \ \ \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n\ - \ \"computerName\": \"vmss1f87d000003\",\r\n \"adminUsername\"\ + \ \"computerName\": \"vmss1d466000003\",\r\n \"adminUsername\"\ : \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \ \ \"secrets\": [],\r\n \"allowExtensionOperations\": true\r\ \n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1f87dNic\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1d466Nic\"\ }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \ \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSF3HZLFC4DBSLXNGMA67FYK6UB32MXU5OURQIMIE64ZEPPX4/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSYFEB2ZKSBHIYKZZHCVUVB4U3EYWH3H7NZXZPFXOXXLFAFZS/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3\"\ ,\r\n \"name\": \"vmss1_3\"\r\n }\r\n ]\r\n}"} headers: cache-control: [no-cache] content-length: ['4462'] content-type: [application/json; charset=utf-8] - date: ['Fri, 28 Sep 2018 22:58:41 GMT'] + date: ['Fri, 16 Nov 2018 02:06:22 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -2463,7 +1125,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/HighCostGetVMScaleSet3Min;173,Microsoft.Compute/HighCostGetVMScaleSet30Min;859,Microsoft.Compute/VMScaleSetVMViews3Min;4982'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/HighCostGetVMScaleSet3Min;175,Microsoft.Compute/HighCostGetVMScaleSet30Min;878,Microsoft.Compute/VMScaleSetVMViews3Min;4980'] x-ms-request-charge: ['2'] status: {code: 200, message: OK} - request: @@ -2475,9 +1137,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.7.0 (Darwin-17.5.0-x86_64-i386-64bit) requests/2.19.1 - msrest/0.5.4 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] + ParameterSetName: [--name --yes --no-wait] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001?api-version=2018-05-01 @@ -2486,12 +1148,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Fri, 28 Sep 2018 22:58:43 GMT'] + date: ['Fri, 16 Nov 2018 02:06:23 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk1TUzo1RkNSRUFURTo1Rk9QVElPTlNGM0haTEZDNERCU3w0MjkyMUU4ODI4MERGNTU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk1TUzo1RkNSRUFURTo1Rk9QVElPTlNZRkVCMlpLU0JISXwyM0E1NTgwNDRDQUEwMjAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + x-ms-ratelimit-remaining-subscription-deletes: ['14998'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index 2682672ee62..c6371649112 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py @@ -1280,6 +1280,29 @@ def test_vm_create_existing_options(self, resource_group, storage_account): self.cmd('vm show -n {vm} -g {rg}', checks=self.check('storageProfile.osDisk.vhd.uri', 'https://{sa}.blob.core.windows.net/{container}/{disk}.vhd')) + @ResourceGroupPreparer(name_prefix='cli_test_vm_create_existing') + def test_vm_create_auth(self, resource_group): + self.kwargs.update({ + 'vm_1': 'vm1', + 'vm_2': 'vm2', + 'ssh_key': TEST_SSH_KEY_PUB, + }) + + self.cmd('vm create --image Debian -l westus -g {rg} -n {vm_1} --authentication-type all ' + ' --admin-username myadmin --admin-password testPassword0 --ssh-key-value \'{ssh_key}\'') + + self.cmd('vm show -n {vm_1} -g {rg}', checks=[ + self.check('osProfile.linuxConfiguration.disablePasswordAuthentication', False), + self.check('osProfile.linuxConfiguration.ssh.publicKeys[0].keyData', TEST_SSH_KEY_PUB) + ]) + + self.cmd('vm create --image Debian -l westus -g {rg} -n {vm_2} --authentication-type ssh ' + ' --admin-username myadmin --ssh-key-value \'{ssh_key}\'') + + self.cmd('vm show -n {vm_2} -g {rg}', checks=[ + self.check('osProfile.linuxConfiguration.disablePasswordAuthentication', True) + ]) + class VMCreateExistingIdsOptions(ScenarioTest): @@ -1743,6 +1766,25 @@ def test_vmss_update_instance_disks(self, resource_group): self.check('length([0].storageProfile.dataDisks)', 0) ]) + @ResourceGroupPreparer(name_prefix='cli_test_vmss_create_options') + def test_vmss_create_auth(self, resource_group): + self.kwargs.update({ + 'vmss_1': 'vmss1', + 'vmss_2': 'vmss2', + 'ssh_key': TEST_SSH_KEY_PUB, + }) + + self.cmd('vmss create --image Debian -l westus -g {rg} -n {vmss_1} --authentication-type all ' + ' --admin-username myadmin --admin-password testPassword0 --ssh-key-value \'{ssh_key}\'', checks=[ + self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication', False), + self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[0].keyData', TEST_SSH_KEY_PUB) + ]) + + self.cmd('vmss create --image Debian -l westus -g {rg} -n {vmss_2} --authentication-type ssh ' + ' --admin-username myadmin --ssh-key-value \'{ssh_key}\'', checks=[ + self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication', True) + ]) + class VMSSCreateBalancerOptionsTest(ScenarioTest): # pylint: disable=too-many-instance-attributes From a4d43bbd39147c0b93fdeffb9cc1a50abb851057 Mon Sep 17 00:00:00 2001 From: Oluwatosin Adewale Date: Fri, 16 Nov 2018 10:19:36 -0800 Subject: [PATCH 3/9] Added history entry, bumped version. Checked out file recording from dev branch. --- src/command_modules/azure-cli-vm/HISTORY.rst | 4 + .../test_vmss_create_ephemeral_os_disk.yaml | 2887 +++++++++++++++-- src/command_modules/azure-cli-vm/setup.py | 2 +- 3 files changed, 2542 insertions(+), 351 deletions(-) diff --git a/src/command_modules/azure-cli-vm/HISTORY.rst b/src/command_modules/azure-cli-vm/HISTORY.rst index 02091eb3507..0e7f9e35f00 100644 --- a/src/command_modules/azure-cli-vm/HISTORY.rst +++ b/src/command_modules/azure-cli-vm/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +2.2.9 +++++++ +* `vm/vmss create`: `--authentication-type` now accepts "all" to create a VM with password and ssh authentication. + 2.2.8 ++++++ * `vm/vmss create --storage-sku`: can now specify the storage account sku for managed os and data disks separately. diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_ephemeral_os_disk.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_ephemeral_os_disk.yaml index 5d1832174ba..576ad7bac4c 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_ephemeral_os_disk.yaml +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_ephemeral_os_disk.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-11-16T01:51:55Z"}}' + "date": "2018-11-10T02:01:09Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,23 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - ParameterSetName: [--location --name --tag] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-16T01:51:55Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-10T02:01:09Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:51:56 GMT'] + date: ['Sat, 10 Nov 2018 02:01:11 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -36,20 +35,18 @@ interactions: CommandName: [vmss create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision - --instance-count --data-disk-sizes-gb --storage-sku] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-16T01:51:55Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-10T02:01:09Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:51:56 GMT'] + date: ['Sat, 10 Nov 2018 02:01:12 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -62,7 +59,7 @@ interactions: Accept: ['*/*'] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - User-Agent: [python-requests/2.19.1] + User-Agent: [python-requests/2.20.0] method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json response: @@ -109,9 +106,9 @@ interactions: content-length: ['2235'] content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] content-type: [text/plain; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:51:57 GMT'] + date: ['Sat, 10 Nov 2018 02:01:13 GMT'] etag: ['"60d07919b4224266adafb81340896eea100dc887"'] - expires: ['Fri, 16 Nov 2018 01:56:57 GMT'] + expires: ['Sat, 10 Nov 2018 02:06:13 GMT'] source-age: ['0'] strict-transport-security: [max-age=31536000] vary: ['Authorization,Accept-Encoding'] @@ -119,12 +116,12 @@ interactions: x-cache: [MISS] x-cache-hits: ['0'] x-content-type-options: [nosniff] - x-fastly-request-id: [8df8cb6883a6863f1abb0363cf462e3eb8b84243] + x-fastly-request-id: [f63af10293de96fe82a768c49747c077de2afca5] x-frame-options: [deny] x-geo-block-list: [''] - x-github-request-id: ['8D7A:593B:C1CD8:C9C4C:5BEE22BD'] - x-served-by: [cache-sea1040-SEA] - x-timer: ['S1542333117.233685,VS0,VE91'] + x-github-request-id: ['2F36:6C32:62425D:6B1452:5BE63BE9'] + x-served-by: [cache-dfw18632-DFW] + x-timer: ['S1541815274.776896,VS0,VE75'] x-xss-protection: [1; mode=block] status: {code: 200, message: OK} - request: @@ -134,9 +131,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision - --instance-count --data-disk-sizes-gb --storage-sku] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET @@ -147,7 +142,7 @@ interactions: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:51:57 GMT'] + date: ['Sat, 10 Nov 2018 02:01:14 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -183,12 +178,12 @@ interactions: "diffDiskSettings": {"option": "Local"}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "16.04-LTS", "version": "latest"}, "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": "premium_lrs"}, "createOption": - "empty", "diskSizeGB": 1}]}, "osProfile": {"computerNamePrefix": "clite2cbf", + "empty", "diskSizeGB": 1}]}, "osProfile": {"computerNamePrefix": "clitec15e", "adminUsername": "tosin", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/tosin/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "clite2cbfNic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "clite2cbfIPConfig", + "networkProfile": {"networkInterfaceConfigurations": [{"name": "clitec15eNic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "clitec15eIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool"}]}}]}}]}}, @@ -203,21 +198,19 @@ interactions: Connection: [keep-alive] Content-Length: ['4648'] Content-Type: [application/json; charset=utf-8] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision - --instance-count --data-disk-sizes-gb --storage-sku] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_VBuMAaZohvD3ubHFx7ArDqHm2iZczR7o","name":"vmss_deploy_VBuMAaZohvD3ubHFx7ArDqHm2iZczR7o","properties":{"templateHash":"18052990544446072603","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-16T01:51:59.8866123Z","duration":"PT0.838213S","correlationId":"9d735351-66df-44be-abca-ffa8fc0e68ef","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-1"}]}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","name":"vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","properties":{"templateHash":"6043111070468457383","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-10T02:01:17.6080272Z","duration":"PT1.2612799S","correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-1"}]}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_VBuMAaZohvD3ubHFx7ArDqHm2iZczR7o/operationStatuses/08586592737664292384?api-version=2018-05-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/operationStatuses/08586597916091308760?api-version=2018-05-01'] cache-control: [no-cache] content-length: ['2843'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:51:59 GMT'] + date: ['Sat, 10 Nov 2018 02:01:17 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -231,23 +224,25 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision - --instance-count --data-disk-sizes-gb --storage-sku] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592737664292384?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%202018-09-29T10%3A01%3A25Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 response: - body: {string: '{"status":"Running"}'} + body: {string: '{"value":[]}'} headers: cache-control: [no-cache] - content-length: ['20'] + content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:52:29 GMT'] + date: ['Sat, 10 Nov 2018 02:01:25 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -257,23 +252,25 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision - --instance-count --data-disk-sizes-gb --storage-sku] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592737664292384?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%202018-09-29T10%3A01%3A35Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 response: - body: {string: '{"status":"Running"}'} + body: {string: '{"value":[]}'} headers: cache-control: [no-cache] - content-length: ['20'] + content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:53:00 GMT'] + date: ['Sat, 10 Nov 2018 02:01:35 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -283,23 +280,54 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision - --instance-count --data-disk-sizes-gb --storage-sku] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592737664292384?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%202018-09-29T10%3A01%3A46Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 response: - body: {string: '{"status":"Running"}'} + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} headers: cache-control: [no-cache] - content-length: ['20'] + content-length: ['32011'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:53:30 GMT'] + date: ['Sat, 10 Nov 2018 02:01:46 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -309,19 +337,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision - --instance-count --data-disk-sizes-gb --storage-sku] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592737664292384?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:54:01 GMT'] + date: ['Sat, 10 Nov 2018 02:01:47 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -335,23 +361,57 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision - --instance-count --data-disk-sizes-gb --storage-sku] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592737664292384?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%202018-09-29T10%3A01%3A56Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 response: - body: {string: '{"status":"Running"}'} + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} headers: cache-control: [no-cache] - content-length: ['20'] + content-length: ['35596'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:54:31 GMT'] + date: ['Sat, 10 Nov 2018 02:01:57 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -361,23 +421,70 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision - --instance-count --data-disk-sizes-gb --storage-sku] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592737664292384?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%202018-09-29T10%3A02%3A07Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 response: - body: {string: '{"status":"Running"}'} + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} headers: cache-control: [no-cache] - content-length: ['20'] + content-length: ['54574'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:55:02 GMT'] + date: ['Sat, 10 Nov 2018 02:02:07 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -387,23 +494,76 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision - --instance-count --data-disk-sizes-gb --storage-sku] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592737664292384?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%202018-09-29T10%3A02%3A17Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 response: - body: {string: '{"status":"Succeeded"}'} + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} headers: cache-control: [no-cache] - content-length: ['22'] + content-length: ['62048'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:55:31 GMT'] + date: ['Sat, 10 Nov 2018 02:02:17 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -413,20 +573,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision - --instance-count --data-disk-sizes-gb --storage-sku] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_VBuMAaZohvD3ubHFx7ArDqHm2iZczR7o","name":"vmss_deploy_VBuMAaZohvD3ubHFx7ArDqHm2iZczR7o","properties":{"templateHash":"18052990544446072603","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-16T01:55:02.3389048Z","duration":"PT3M3.2905055S","correlationId":"9d735351-66df-44be-abca-ffa8fc0e68ef","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"clite2cbf","adminUsername":"tosin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/tosin/.ssh/authorized_keys","keyData":"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"diffDiskSettings":{"option":"Local"},"createOption":"FromImage","caching":"ReadOnly","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"},"dataDisks":[{"lun":0,"createOption":"Empty","caching":"None","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":1}]},"networkProfile":{"networkInterfaceConfigurations":[{"name":"clite2cbfNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clite2cbfIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":false,"uniqueId":"928aa880-8d25-47ff-9996-52ef1d5e9114"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"}]}}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['6232'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:55:31 GMT'] + date: ['Sat, 10 Nov 2018 02:02:18 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -438,65 +595,83 @@ interactions: headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss show] + CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [-g -n] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 - computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1?api-version=2018-10-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%202018-09-29T10%3A02%3A28Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 response: - body: {string: "{\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ - : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ - \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ - \n \"osProfile\": {\r\n \"computerNamePrefix\": \"clite2cbf\"\ - ,\r\n \"adminUsername\": \"tosin\",\r\n \"linuxConfiguration\"\ - : {\r\n \"disablePasswordAuthentication\": true,\r\n \"\ - ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ - \ \"path\": \"/home/tosin/.ssh/authorized_keys\",\r\n \ - \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/\"\ - \r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\"\ - : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ - : true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\ - \n \"diffDiskSettings\": {\r\n \"option\": \"Local\"\r\ - \n },\r\n \"createOption\": \"FromImage\",\r\n \ - \ \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \ - \ \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\ - \n \"imageReference\": {\r\n \"publisher\": \"Canonical\"\ - ,\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\"\ - ,\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"createOption\"\ - : \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\"\ - : {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n \ - \ },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n \ - \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"\ - name\":\"clite2cbfNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ - :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ - ipConfigurations\":[{\"name\":\"clite2cbfIPConfig\",\"properties\":{\"subnet\"\ - :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\"\ - }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"\ - }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"928aa880-8d25-47ff-9996-52ef1d5e9114\"\ - \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1\"\ - ,\r\n \"name\": \"cli-test-vmss-local-1\"\r\n}"} + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} headers: cache-control: [no-cache] - content-length: ['3576'] + content-length: ['65747'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:55:33 GMT'] + date: ['Sat, 10 Nov 2018 02:02:28 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] - vary: [Accept-Encoding] + vary: ['Accept-Encoding,Accept-Encoding'] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;187,Microsoft.Compute/GetVMScaleSet30Min;1235'] status: {code: 200, message: OK} - request: body: null @@ -506,96 +681,104 @@ interactions: CommandName: [vmss create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching - --disable-overprovision --instance-count] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001?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%202018-09-29T10%3A02%3A38Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-16T01:51:55Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} headers: cache-control: [no-cache] - content-length: ['384'] + content-length: ['65747'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:55:33 GMT'] + date: ['Sat, 10 Nov 2018 02:02:39 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] Connection: [keep-alive] - User-Agent: [python-requests/2.19.1] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 response: - body: {string: "{\n \"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\"\ - ,\n \"contentVersion\":\"1.0.0.0\",\n \"parameters\":{},\n \"variables\"\ - :{},\n \"resources\":[],\n\n \"outputs\":{\n \"aliases\":{\n \"\ - type\":\"object\",\n \"value\":{\n\n \"Linux\":{\n \"\ - CentOS\":{\n \"publisher\":\"OpenLogic\",\n \"offer\"\ - :\"CentOS\",\n \"sku\":\"7.3\",\n \"version\":\"latest\"\ - \n },\n \"CoreOS\":{\n \"publisher\":\"CoreOS\"\ - ,\n \"offer\":\"CoreOS\",\n \"sku\":\"Stable\",\n \ - \ \"version\":\"latest\"\n },\n \"Debian\":{\n\ - \ \"publisher\":\"credativ\",\n \"offer\":\"Debian\"\ - ,\n \"sku\":\"8\",\n \"version\":\"latest\"\n \ - \ },\n \"openSUSE-Leap\": {\n \"publisher\":\"SUSE\"\ - ,\n \"offer\":\"openSUSE-Leap\",\n \"sku\":\"42.3\"\ - ,\n \"version\": \"latest\"\n },\n \"RHEL\":{\n\ - \ \"publisher\":\"RedHat\",\n \"offer\":\"RHEL\",\n\ - \ \"sku\":\"7.3\",\n \"version\":\"latest\"\n \ - \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \ - \ \"offer\":\"SLES\",\n \"sku\":\"12-SP2\",\n \ - \ \"version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \ - \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\"\ - ,\n \"sku\":\"16.04-LTS\",\n \"version\":\"latest\"\n\ - \ }\n },\n\n \"Windows\":{\n \"Win2016Datacenter\"\ - :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ - offer\":\"WindowsServer\",\n \"sku\":\"2016-Datacenter\",\n \ - \ \"version\":\"latest\"\n },\n \"Win2012R2Datacenter\"\ - :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ - offer\":\"WindowsServer\",\n \"sku\":\"2012-R2-Datacenter\",\n\ - \ \"version\":\"latest\"\n },\n \"Win2012Datacenter\"\ - :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ - offer\":\"WindowsServer\",\n \"sku\":\"2012-Datacenter\",\n \ - \ \"version\":\"latest\"\n },\n \"Win2008R2SP1\"\ - :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ - offer\":\"WindowsServer\",\n \"sku\":\"2008-R2-SP1\",\n \ - \ \"version\":\"latest\"\n }\n }\n }\n }\n }\n\ - }\n"} + body: {string: '{"status":"Running"}'} headers: - accept-ranges: [bytes] - access-control-allow-origin: ['*'] - cache-control: [max-age=300] - connection: [keep-alive] - content-length: ['2235'] - content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] - content-type: [text/plain; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:55:34 GMT'] - etag: ['"60d07919b4224266adafb81340896eea100dc887"'] - expires: ['Fri, 16 Nov 2018 02:00:34 GMT'] - source-age: ['0'] - strict-transport-security: [max-age=31536000] - vary: ['Authorization,Accept-Encoding'] - via: [1.1 varnish] - x-cache: [MISS] - x-cache-hits: ['0'] + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:02:48 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-fastly-request-id: [ae546029392cad60ffee3e3230667ce4a2378e2e] - x-frame-options: [deny] - x-geo-block-list: [''] - x-github-request-id: ['4550:2A94:15A86:177EF:5BEE2395'] - x-served-by: [cache-dfw18642-DFW] - x-timer: ['S1542333334.393810,VS0,VE70'] - x-xss-protection: [1; mode=block] status: {code: 200, message: OK} - request: body: null @@ -604,113 +787,177 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching - --disable-overprovision --instance-count] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 - networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-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%202018-09-29T10%3A02%3A49Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli-test-vmss-local-1VNET\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\"\ - ,\r\n \"etag\": \"W/\\\"e778f77c-3201-4d41-b684-6056f0c5eec5\\\"\",\r\ - \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3472218c-df4b-40d3-86be-f3a444204e73\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \ - \ \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\"\ - : [\r\n {\r\n \"name\": \"cli-test-vmss-local-1Subnet\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ - ,\r\n \"etag\": \"W/\\\"e778f77c-3201-4d41-b684-6056f0c5eec5\\\"\ - \",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n\ - \ \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6\"\ - \r\n },\r\n \"ipConfigurations\": [\r\n \ - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/virtualMachines/0/networkInterfaces/clite2cbfNic/ipConfigurations/clite2cbfIPConfig\"\ - \r\n },\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/virtualMachines/1/networkInterfaces/clite2cbfNic/ipConfigurations/clite2cbfIPConfig\"\ - \r\n }\r\n ]\r\n },\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\ - \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ - : false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n\ - \ ]\r\n}"} + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} headers: cache-control: [no-cache] - content-length: ['2520'] + content-length: ['69446'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:55:34 GMT'] + date: ['Sat, 10 Nov 2018 02:02:49 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] - vary: [Accept-Encoding] + vary: ['Accept-Encoding,Accept-Encoding'] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: - body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": - [{"apiVersion": "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", - "name": "cli-test-vmss-local-2LBPublicIP", "location": "westus", "tags": {}, - "dependsOn": [], "properties": {"publicIPAllocationMethod": "Dynamic"}}, {"type": - "Microsoft.Network/loadBalancers", "name": "cli-test-vmss-local-2LB", "location": - "westus", "tags": {}, "apiVersion": "2018-01-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/cli-test-vmss-local-2LBPublicIP"], - "properties": {"backendAddressPools": [{"name": "cli-test-vmss-local-2LBBEPool"}], - "inboundNatPools": [{"name": "cli-test-vmss-local-2LBNatPool", "properties": - {"frontendIPConfiguration": {"id": "[concat(resourceId(\''Microsoft.Network/loadBalancers\'', - \''cli-test-vmss-local-2LB\''), \''/frontendIPConfigurations/\'', \''loadBalancerFrontEnd\'')]"}, - "protocol": "tcp", "frontendPortRangeStart": "50000", "frontendPortRangeEnd": - "50119", "backendPort": 22}}], "frontendIPConfigurations": [{"name": "loadBalancerFrontEnd", - "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"}}}]}}, - {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "cli-test-vmss-local-2", - "location": "westus", "tags": {}, "apiVersion": "2018-10-01", "dependsOn": ["Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"], - "sku": {"name": "Standard_DS1_v2", "capacity": 2}, "properties": {"overprovision": - false, "upgradePolicy": {"mode": "manual"}, "virtualMachineProfile": {"storageProfile": - {"osDisk": {"createOption": "FromImage", "caching": "ReadOnly", "managedDisk": - {"storageAccountType": null}, "diffDiskSettings": {"option": "Local"}}, "imageReference": - {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "16.04-LTS", "version": - "latest"}}, "osProfile": {"computerNamePrefix": "clite8259", "adminUsername": - "tosin", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/tosin/.ssh/authorized_keys", "keyData": "ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "clite8259Nic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "clite8259IPConfig", - "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"}, - "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool"}], - "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool"}]}}]}}]}}, - "singlePlacementGroup": null}}], "outputs": {"VMSS": {"type": "object", "value": - "[reference(resourceId(\''Microsoft.Compute/virtualMachineScaleSets\'', \''cli-test-vmss-local-2\''),providers(\''Microsoft.Compute\'', - \''virtualMachineScaleSets\'').apiVersions[0])]"}}}, "parameters": {}, "mode": - "Incremental"}}''' + body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Length: ['4054'] Content-Type: [application/json; charset=utf-8] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching - --disable-overprovision --instance-count] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + 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%202018-09-29T10%3A03%3A00Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_VH2vmrkRlF8uZZCDr5ysiGOOWR45gJlc","name":"vmss_deploy_VH2vmrkRlF8uZZCDr5ysiGOOWR45gJlc","properties":{"templateHash":"8004976054211037407","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-16T01:55:37.7750241Z","duration":"PT1.071439S","correlationId":"9ff8321b-a879-4239-9dc5-64f4af0bb0a9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-2"}]}}'} + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_VH2vmrkRlF8uZZCDr5ysiGOOWR45gJlc/operationStatuses/08586592735487740303?api-version=2018-05-01'] cache-control: [no-cache] - content-length: ['2152'] + content-length: ['73145'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:55:37 GMT'] + date: ['Sat, 10 Nov 2018 02:03:00 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] - status: {code: 201, message: Created} + status: {code: 200, message: OK} - request: body: null headers: @@ -718,23 +965,88 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching - --disable-overprovision --instance-count] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592735487740303?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%202018-09-29T10%3A03%3A10Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 response: - body: {string: '{"status":"Running"}'} + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} headers: cache-control: [no-cache] - content-length: ['20'] + content-length: ['73145'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:56:07 GMT'] + date: ['Sat, 10 Nov 2018 02:03:11 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -744,19 +1056,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching - --disable-overprovision --instance-count] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592735487740303?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:56:38 GMT'] + date: ['Sat, 10 Nov 2018 02:03:18 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -770,23 +1080,92 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching - --disable-overprovision --instance-count] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592735487740303?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%202018-09-29T10%3A03%3A21Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 response: - body: {string: '{"status":"Running"}'} + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} headers: cache-control: [no-cache] - content-length: ['20'] + content-length: ['76844'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:57:08 GMT'] + date: ['Sat, 10 Nov 2018 02:03:21 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -796,23 +1175,1837 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching - --disable-overprovision --instance-count] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592735487740303?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%202018-09-29T10%3A03%3A31Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 response: - body: {string: '{"status":"Running"}'} + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} headers: cache-control: [no-cache] - content-length: ['20'] + content-length: ['76844'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:57:38 GMT'] + date: ['Sat, 10 Nov 2018 02:03:32 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] + 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: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A03%3A42Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"bf1ba453-d39c-40bb-a999-c4c8ee212664","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/bf1ba453-d39c-40bb-a999-c4c8ee212664/ticks/636774122053504504","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f292ea7a-dafe-4a88-866b-bddcbb066e3e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:25.3504504Z","submissionTimestamp":"2018-11-10T02:03:42.1082775Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6b28ffdc-72bc-40d2-8e34-734bcbce429e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/6b28ffdc-72bc-40d2-8e34-734bcbce429e/ticks/636774121902564338","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"4e8911b8-1b12-4252-8139-250e6c2a33a5","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:10.2564338Z","submissionTimestamp":"2018-11-10T02:03:32.0892745Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['84242'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:03:43 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:03:49 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A03%3A53Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"bf1ba453-d39c-40bb-a999-c4c8ee212664","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/bf1ba453-d39c-40bb-a999-c4c8ee212664/ticks/636774122053504504","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f292ea7a-dafe-4a88-866b-bddcbb066e3e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:25.3504504Z","submissionTimestamp":"2018-11-10T02:03:42.1082775Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6b28ffdc-72bc-40d2-8e34-734bcbce429e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/6b28ffdc-72bc-40d2-8e34-734bcbce429e/ticks/636774121902564338","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"4e8911b8-1b12-4252-8139-250e6c2a33a5","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:10.2564338Z","submissionTimestamp":"2018-11-10T02:03:32.0892745Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['84242'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:03:53 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A04%3A04Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"bf1ba453-d39c-40bb-a999-c4c8ee212664","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/bf1ba453-d39c-40bb-a999-c4c8ee212664/ticks/636774122053504504","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f292ea7a-dafe-4a88-866b-bddcbb066e3e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:25.3504504Z","submissionTimestamp":"2018-11-10T02:03:42.1082775Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6b28ffdc-72bc-40d2-8e34-734bcbce429e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/6b28ffdc-72bc-40d2-8e34-734bcbce429e/ticks/636774121902564338","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"4e8911b8-1b12-4252-8139-250e6c2a33a5","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:10.2564338Z","submissionTimestamp":"2018-11-10T02:03:32.0892745Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['84242'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:04:04 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A04%3A15Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"bf1ba453-d39c-40bb-a999-c4c8ee212664","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/bf1ba453-d39c-40bb-a999-c4c8ee212664/ticks/636774122053504504","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f292ea7a-dafe-4a88-866b-bddcbb066e3e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:25.3504504Z","submissionTimestamp":"2018-11-10T02:03:42.1082775Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6b28ffdc-72bc-40d2-8e34-734bcbce429e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/6b28ffdc-72bc-40d2-8e34-734bcbce429e/ticks/636774121902564338","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"4e8911b8-1b12-4252-8139-250e6c2a33a5","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:10.2564338Z","submissionTimestamp":"2018-11-10T02:03:32.0892745Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['84242'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:04:16 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 + response: + body: {string: '{"status":"Succeeded"}'} + headers: + cache-control: [no-cache] + content-length: ['22'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:04:20 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","name":"vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","properties":{"templateHash":"6043111070468457383","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-10T02:04:06.5459884Z","duration":"PT2M50.1992411S","correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"clitec15e","adminUsername":"tosin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/tosin/.ssh/authorized_keys","keyData":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"diffDiskSettings":{"option":"Local"},"createOption":"FromImage","caching":"ReadOnly","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"},"dataDisks":[{"lun":0,"createOption":"Empty","caching":"None","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":1}]},"networkProfile":{"networkInterfaceConfigurations":[{"name":"clitec15eNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clitec15eIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":false,"uniqueId":"24d61316-cbd1-415b-bb7d-bac7bb6a06c9"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"}]}}'} + headers: + cache-control: [no-cache] + content-length: ['6232'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:04:20 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss show] + Connection: [keep-alive] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1?api-version=2018-10-01 + response: + body: {string: "{\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ + \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ + : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ + \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ + \n \"osProfile\": {\r\n \"computerNamePrefix\": \"clitec15e\"\ + ,\r\n \"adminUsername\": \"tosin\",\r\n \"linuxConfiguration\"\ + : {\r\n \"disablePasswordAuthentication\": true,\r\n \"\ + ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ + \ \"path\": \"/home/tosin/.ssh/authorized_keys\",\r\n \ + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/\"\ + \r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\"\ + : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ + : true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\ + \n \"diffDiskSettings\": {\r\n \"option\": \"Local\"\r\ + \n },\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\ + \n \"imageReference\": {\r\n \"publisher\": \"Canonical\"\ + ,\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\"\ + ,\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"createOption\"\ + : \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\"\ + : {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n \ + \ },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n \ + \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"\ + name\":\"clitec15eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ + :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ + ipConfigurations\":[{\"name\":\"clitec15eIPConfig\",\"properties\":{\"subnet\"\ + :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ + },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ + :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\"\ + }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"\ + }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ + overprovision\": false,\r\n \"uniqueId\": \"24d61316-cbd1-415b-bb7d-bac7bb6a06c9\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1\"\ + ,\r\n \"name\": \"cli-test-vmss-local-1\"\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['3576'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:04:20 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;190,Microsoft.Compute/GetVMScaleSet30Min;1286'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-10T02:01:09Z"},"properties":{"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['384'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:04:21 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.20.0] + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + response: + body: {string: "{\n \"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\"\ + ,\n \"contentVersion\":\"1.0.0.0\",\n \"parameters\":{},\n \"variables\"\ + :{},\n \"resources\":[],\n\n \"outputs\":{\n \"aliases\":{\n \"\ + type\":\"object\",\n \"value\":{\n\n \"Linux\":{\n \"\ + CentOS\":{\n \"publisher\":\"OpenLogic\",\n \"offer\"\ + :\"CentOS\",\n \"sku\":\"7.3\",\n \"version\":\"latest\"\ + \n },\n \"CoreOS\":{\n \"publisher\":\"CoreOS\"\ + ,\n \"offer\":\"CoreOS\",\n \"sku\":\"Stable\",\n \ + \ \"version\":\"latest\"\n },\n \"Debian\":{\n\ + \ \"publisher\":\"credativ\",\n \"offer\":\"Debian\"\ + ,\n \"sku\":\"8\",\n \"version\":\"latest\"\n \ + \ },\n \"openSUSE-Leap\": {\n \"publisher\":\"SUSE\"\ + ,\n \"offer\":\"openSUSE-Leap\",\n \"sku\":\"42.3\"\ + ,\n \"version\": \"latest\"\n },\n \"RHEL\":{\n\ + \ \"publisher\":\"RedHat\",\n \"offer\":\"RHEL\",\n\ + \ \"sku\":\"7.3\",\n \"version\":\"latest\"\n \ + \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \ + \ \"offer\":\"SLES\",\n \"sku\":\"12-SP2\",\n \ + \ \"version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \ + \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\"\ + ,\n \"sku\":\"16.04-LTS\",\n \"version\":\"latest\"\n\ + \ }\n },\n\n \"Windows\":{\n \"Win2016Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2016-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\n \"Win2012R2Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2012-R2-Datacenter\",\n\ + \ \"version\":\"latest\"\n },\n \"Win2012Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2012-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\n \"Win2008R2SP1\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2008-R2-SP1\",\n \ + \ \"version\":\"latest\"\n }\n }\n }\n }\n }\n\ + }\n"} + headers: + accept-ranges: [bytes] + access-control-allow-origin: ['*'] + cache-control: [max-age=300] + connection: [keep-alive] + content-length: ['2235'] + content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] + content-type: [text/plain; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:04:22 GMT'] + etag: ['"60d07919b4224266adafb81340896eea100dc887"'] + expires: ['Sat, 10 Nov 2018 02:09:22 GMT'] + source-age: ['0'] + strict-transport-security: [max-age=31536000] + vary: ['Authorization,Accept-Encoding'] + via: [1.1 varnish] + x-cache: [MISS] + x-cache-hits: ['0'] + x-content-type-options: [nosniff] + x-fastly-request-id: [af07660529ebcfa60958b4416d88d24947d8651b] + x-frame-options: [deny] + x-geo-block-list: [''] + x-github-request-id: ['7A20:0B97:23CCE04:256ABC5:5BE63CA6'] + x-served-by: [cache-sea1026-SEA] + x-timer: ['S1541815462.441210,VS0,VE96'] + x-xss-protection: [1; mode=block] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 + response: + body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli-test-vmss-local-1VNET\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\"\ + ,\r\n \"etag\": \"W/\\\"902e0dba-83c7-4bf5-9677-8cb711c0d12d\\\"\",\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ + : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \ + \ \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\"\ + : [\r\n {\r\n \"name\": \"cli-test-vmss-local-1Subnet\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ + ,\r\n \"etag\": \"W/\\\"902e0dba-83c7-4bf5-9677-8cb711c0d12d\\\"\ + \",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n\ + \ \"ipConfigurations\": [\r\n {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/virtualMachines/0/networkInterfaces/clitec15eNic/ipConfigurations/clitec15eIPConfig\"\ + \r\n },\r\n {\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/virtualMachines/1/networkInterfaces/clitec15eNic/ipConfigurations/clitec15eIPConfig\"\ + \r\n }\r\n ]\r\n },\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\ + \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n\ + \ ]\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['2281'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:04:22 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"apiVersion": "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", + "name": "cli-test-vmss-local-2LBPublicIP", "location": "westus", "tags": {}, + "dependsOn": [], "properties": {"publicIPAllocationMethod": "Dynamic"}}, {"type": + "Microsoft.Network/loadBalancers", "name": "cli-test-vmss-local-2LB", "location": + "westus", "tags": {}, "apiVersion": "2018-01-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/cli-test-vmss-local-2LBPublicIP"], + "properties": {"backendAddressPools": [{"name": "cli-test-vmss-local-2LBBEPool"}], + "inboundNatPools": [{"name": "cli-test-vmss-local-2LBNatPool", "properties": + {"frontendIPConfiguration": {"id": "[concat(resourceId(\''Microsoft.Network/loadBalancers\'', + \''cli-test-vmss-local-2LB\''), \''/frontendIPConfigurations/\'', \''loadBalancerFrontEnd\'')]"}, + "protocol": "tcp", "frontendPortRangeStart": "50000", "frontendPortRangeEnd": + "50119", "backendPort": 22}}], "frontendIPConfigurations": [{"name": "loadBalancerFrontEnd", + "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"}}}]}}, + {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "cli-test-vmss-local-2", + "location": "westus", "tags": {}, "apiVersion": "2018-10-01", "dependsOn": ["Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"], + "sku": {"name": "Standard_DS1_v2", "capacity": 2}, "properties": {"overprovision": + false, "upgradePolicy": {"mode": "manual"}, "virtualMachineProfile": {"storageProfile": + {"osDisk": {"createOption": "FromImage", "caching": "ReadOnly", "managedDisk": + {"storageAccountType": null}, "diffDiskSettings": {"option": "Local"}}, "imageReference": + {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "16.04-LTS", "version": + "latest"}}, "osProfile": {"computerNamePrefix": "clite7c20", "adminUsername": + "tosin", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": + {"publicKeys": [{"path": "/home/tosin/.ssh/authorized_keys", "keyData": "ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]}}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "clite7c20Nic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "clite7c20IPConfig", + "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"}, + "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool"}], + "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool"}]}}]}}]}}, + "singlePlacementGroup": null}}], "outputs": {"VMSS": {"type": "object", "value": + "[reference(resourceId(\''Microsoft.Compute/virtualMachineScaleSets\'', \''cli-test-vmss-local-2\''),providers(\''Microsoft.Compute\'', + \''virtualMachineScaleSets\'').apiVersions[0])]"}}}, "parameters": {}, "mode": + "Incremental"}}''' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + Content-Length: ['4054'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","name":"vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","properties":{"templateHash":"15214464966890777813","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-10T02:04:25.7550153Z","duration":"PT1.0631667S","correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-2"}]}}'} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/operationStatuses/08586597914207857749?api-version=2018-05-01'] + cache-control: [no-cache] + content-length: ['2154'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:04:25 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A04%3A34Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + response: + body: {string: '{"value":[]}'} + headers: + cache-control: [no-cache] + content-length: ['12'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:04:34 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A04%3A44Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['3847'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:04:44 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A04%3A55Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['11358'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:04:55 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:04:56 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A05%3A06Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['31224'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:05:05 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A05%3A16Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['46013'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:05:16 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:05:26 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A05%3A27Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['46013'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:05:27 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A05%3A38Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['49712'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:05:38 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A05%3A49Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['53410'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:05:49 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:05:56 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A06%3A00Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['53410'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:06:00 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A06%3A10Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['57109'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:06:10 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A06%3A21Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['57109'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:06:21 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 + response: + body: {string: '{"status":"Running"}'} + headers: + cache-control: [no-cache] + content-length: ['20'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:06:27 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A06%3A31Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce879b8f-5514-4da1-a357-52907be5c9c7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/ce879b8f-5514-4da1-a357-52907be5c9c7/ticks/636774123597274431","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"045bbf08-99ef-4f70-8fb6-bf78dd5ab41e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:59.7274431Z","submissionTimestamp":"2018-11-10T02:06:25.0865197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['60808'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:06:32 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A06%3A42Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce879b8f-5514-4da1-a357-52907be5c9c7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/ce879b8f-5514-4da1-a357-52907be5c9c7/ticks/636774123597274431","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"045bbf08-99ef-4f70-8fb6-bf78dd5ab41e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:59.7274431Z","submissionTimestamp":"2018-11-10T02:06:25.0865197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['60808'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:06:42 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: [vmss create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + 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%202018-09-29T10%3A06%3A53Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + response: + body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce879b8f-5514-4da1-a357-52907be5c9c7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/ce879b8f-5514-4da1-a357-52907be5c9c7/ticks/636774123597274431","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"045bbf08-99ef-4f70-8fb6-bf78dd5ab41e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:59.7274431Z","submissionTimestamp":"2018-11-10T02:06:25.0865197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + headers: + cache-control: [no-cache] + content-length: ['60808'] + content-type: [application/json; charset=utf-8] + date: ['Sat, 10 Nov 2018 02:06:53 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + 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: @@ -822,19 +3015,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching - --disable-overprovision --instance-count] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586592735487740303?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 response: body: {string: '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:58:09 GMT'] + date: ['Sat, 10 Nov 2018 02:06:57 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -848,20 +3039,18 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching - --disable-overprovision --instance-count] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_VH2vmrkRlF8uZZCDr5ysiGOOWR45gJlc","name":"vmss_deploy_VH2vmrkRlF8uZZCDr5ysiGOOWR45gJlc","properties":{"templateHash":"8004976054211037407","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-16T01:57:54.0159671Z","duration":"PT2M17.312382S","correlationId":"9ff8321b-a879-4239-9dc5-64f4af0bb0a9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"clite8259","adminUsername":"tosin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/tosin/.ssh/authorized_keys","keyData":"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"diffDiskSettings":{"option":"Local"},"createOption":"FromImage","caching":"ReadOnly","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"clite8259Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clite8259IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":false,"uniqueId":"dcf7aa2d-04e1-4725-9a71-b627020440ce"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"}]}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","name":"vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","properties":{"templateHash":"15214464966890777813","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-10T02:06:41.7836953Z","duration":"PT2M17.0918467S","correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"clite7c20","adminUsername":"tosin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/tosin/.ssh/authorized_keys","keyData":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"diffDiskSettings":{"option":"Local"},"createOption":"FromImage","caching":"ReadOnly","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"clite7c20Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clite7c20IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":false,"uniqueId":"6ac3f0ef-7874-47ba-83f0-96f05a94c146"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"}]}}'} headers: cache-control: [no-cache] - content-length: ['5189'] + content-length: ['5191'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:58:09 GMT'] + date: ['Sat, 10 Nov 2018 02:06:58 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -875,8 +3064,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss show] Connection: [keep-alive] - ParameterSetName: [-g -n] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET @@ -886,7 +3074,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ - \n \"osProfile\": {\r\n \"computerNamePrefix\": \"clite8259\"\ + \n \"osProfile\": {\r\n \"computerNamePrefix\": \"clite7c20\"\ ,\r\n \"adminUsername\": \"tosin\",\r\n \"linuxConfiguration\"\ : {\r\n \"disablePasswordAuthentication\": true,\r\n \"\ ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ @@ -902,15 +3090,15 @@ interactions: \n \"imageReference\": {\r\n \"publisher\": \"Canonical\"\ ,\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\"\ ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clite8259Nic\"\ + networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clite7c20Nic\"\ ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"clite8259IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ + :[{\"name\":\"clite7c20IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\"\ }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"\ }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"dcf7aa2d-04e1-4725-9a71-b627020440ce\"\ + overprovision\": false,\r\n \"uniqueId\": \"6ac3f0ef-7874-47ba-83f0-96f05a94c146\"\ \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2\"\ ,\r\n \"name\": \"cli-test-vmss-local-2\"\r\n}"} @@ -918,7 +3106,7 @@ interactions: cache-control: [no-cache] content-length: ['3295'] content-type: [application/json; charset=utf-8] - date: ['Fri, 16 Nov 2018 01:58:11 GMT'] + date: ['Sat, 10 Nov 2018 02:07:00 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -926,7 +3114,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;185,Microsoft.Compute/GetVMScaleSet30Min;1221'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;190,Microsoft.Compute/GetVMScaleSet30Min;1276'] status: {code: 200, message: OK} - request: body: null @@ -937,8 +3125,7 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - ParameterSetName: [--name --yes --no-wait] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.0 msrest_azure/0.4.34 + User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: DELETE @@ -948,9 +3135,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Fri, 16 Nov 2018 01:58:12 GMT'] + date: ['Sat, 10 Nov 2018 02:07:01 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk1TUzo1RkNSRUFURTo1RkVQSEVNRVJBTDo1Rk9TOjVGRHxFMzc3MEQzNjdBMjgyNjM4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk1TUzo1RkNSRUFURTo1RkVQSEVNRVJBTDo1Rk9TOjVGRHxDMzc2NjhFOTEwMTA2MDk3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-vm/setup.py b/src/command_modules/azure-cli-vm/setup.py index fd9f5028741..8459bfbe81b 100644 --- a/src/command_modules/azure-cli-vm/setup.py +++ b/src/command_modules/azure-cli-vm/setup.py @@ -15,7 +15,7 @@ cmdclass = {} -VERSION = "2.2.8" +VERSION = "2.2.9" CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', From 8527141c01e1ee6d4496e65137868a855a4fd15d Mon Sep 17 00:00:00 2001 From: Oluwatosin Adewale Date: Fri, 16 Nov 2018 12:27:29 -0800 Subject: [PATCH 4/9] Addressed PEP8 issues. --- .../vm/tests/latest/test_vm_commands.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index c6371649112..e0a3d105174 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py @@ -1775,15 +1775,17 @@ def test_vmss_create_auth(self, resource_group): }) self.cmd('vmss create --image Debian -l westus -g {rg} -n {vmss_1} --authentication-type all ' - ' --admin-username myadmin --admin-password testPassword0 --ssh-key-value \'{ssh_key}\'', checks=[ - self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication', False), - self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[0].keyData', TEST_SSH_KEY_PUB) - ]) + ' --admin-username myadmin --admin-password testPassword0 --ssh-key-value \'{ssh_key}\'', + checks=[ + self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication', False), + self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[0].keyData', TEST_SSH_KEY_PUB) + ]) self.cmd('vmss create --image Debian -l westus -g {rg} -n {vmss_2} --authentication-type ssh ' - ' --admin-username myadmin --ssh-key-value \'{ssh_key}\'', checks=[ - self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication', True) - ]) + ' --admin-username myadmin --ssh-key-value \'{ssh_key}\'', + checks=[ + self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication', True) + ]) class VMSSCreateBalancerOptionsTest(ScenarioTest): # pylint: disable=too-many-instance-attributes From dd99cfb6e74d4f88ae2e0a0b31c642ff25ae84ef Mon Sep 17 00:00:00 2001 From: Oluwatosin Adewale Date: Fri, 16 Nov 2018 14:00:04 -0800 Subject: [PATCH 5/9] Updated test_vm_defaults auth tests. --- .../vm/tests/latest/test_vm_defaults.py | 33 +++++++++++++++++-- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_defaults.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_defaults.py index 661886dc98c..2a3fc59f193 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_defaults.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_defaults.py @@ -257,6 +257,10 @@ def test_matching_storage_account_specified_location(self): class TestVMDefaultAuthType(unittest.TestCase): + @staticmethod + def _get_test_ssh_key(): + return 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n' + @staticmethod def _set_ns(): ns = argparse.Namespace() @@ -275,6 +279,17 @@ def test_default_windows(self): _validate_vm_vmss_create_auth(ns) self.assertEqual(ns.authentication_type, 'password') + def test_windows_password_and_ssh_fails(self): + ns = TestVMDefaultAuthType._set_ns() + ns.os_type = "WindowS" + ns.authentication_type = 'all' + ns.admin_username = 'user12345' + ns.admin_password = 'verySecret123' + + with self.assertRaises(CLIError) as context: + _validate_vm_vmss_create_auth(ns) + self.assertTrue("SSH not supported for Windows VMs. Use password authentication." in str(context.exception)) + def test_default_linux(self): ns = TestVMDefaultAuthType._set_ns() ns.os_type = "LINux" @@ -282,7 +297,7 @@ def test_default_linux(self): test_user = 'user12345' ns.admin_username = test_user ns.admin_password = None - ns.ssh_key_value = 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n' + ns.ssh_key_value = self._get_test_ssh_key() _validate_vm_vmss_create_auth(ns) self.assertEqual(ns.authentication_type, 'ssh') self.assertEqual(ns.ssh_dest_key_path, '/home/{}/.ssh/authorized_keys'.format(test_user)) @@ -299,9 +314,21 @@ def test_linux_with_password(self): # throw when conflict with ssh key value ns.ssh_key_value = 'junk but does not matter' - with self.assertRaises(ValueError) as context: + with self.assertRaises(CLIError) as context: _validate_vm_vmss_create_auth(ns) - self.assertTrue("incorrect usage for authentication-type 'password':" in str(context.exception)) + self.assertTrue("SSH key cannot be used with password authentication type." in str(context.exception)) + + def test_linux_with_password_and_ssh(self): + ns = TestVMDefaultAuthType._set_ns() + ns.os_type = "LINux" + ns.authentication_type = 'all' + ns.admin_username = 'user12345' + ns.admin_password = 'verySecret!!!' + ns.ssh_key_value = self._get_test_ssh_key() + + _validate_vm_vmss_create_auth(ns) + self.assertEqual(ns.authentication_type, 'all') + self.assertEqual(ns.ssh_dest_key_path, '/home/{}/.ssh/authorized_keys'.format(ns.admin_username)) class TestVMImageDefaults(unittest.TestCase): From 7257cbf0003583d485255042088b739524cff653 Mon Sep 17 00:00:00 2001 From: Oluwatosin Adewale Date: Fri, 16 Nov 2018 15:28:24 -0800 Subject: [PATCH 6/9] Updated other profile's unittests. --- .../vm/tests/hybrid_2018_03_01/test_vm_defaults.py | 4 ++-- .../vm/tests/profile_2017_03_09/test_vm_defaults.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_defaults.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_defaults.py index 6df38e4ed88..6b29586e3a8 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_defaults.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_defaults.py @@ -299,9 +299,9 @@ def test_linux_with_password(self): # throw when conflict with ssh key value ns.ssh_key_value = 'junk but does not matter' - with self.assertRaises(ValueError) as context: + with self.assertRaises(CLIError) as context: _validate_vm_vmss_create_auth(ns) - self.assertTrue("incorrect usage for authentication-type 'password':" in str(context.exception)) + self.assertTrue("SSH key cannot be used with password authentication type." in str(context.exception)) class TestVMImageDefaults(unittest.TestCase): diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/profile_2017_03_09/test_vm_defaults.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/profile_2017_03_09/test_vm_defaults.py index 6df38e4ed88..6b29586e3a8 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/profile_2017_03_09/test_vm_defaults.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/profile_2017_03_09/test_vm_defaults.py @@ -299,9 +299,9 @@ def test_linux_with_password(self): # throw when conflict with ssh key value ns.ssh_key_value = 'junk but does not matter' - with self.assertRaises(ValueError) as context: + with self.assertRaises(CLIError) as context: _validate_vm_vmss_create_auth(ns) - self.assertTrue("incorrect usage for authentication-type 'password':" in str(context.exception)) + self.assertTrue("SSH key cannot be used with password authentication type." in str(context.exception)) class TestVMImageDefaults(unittest.TestCase): From e865c7e9c975345f046fc88ca3a59190100424d5 Mon Sep 17 00:00:00 2001 From: Oluwatosin Adewale Date: Mon, 19 Nov 2018 12:02:10 -0800 Subject: [PATCH 7/9] Now infers authentication_type, other updates. --- src/command_modules/azure-cli-vm/HISTORY.rst | 2 +- .../command_modules/vm/_template_builder.py | 4 ++-- .../cli/command_modules/vm/_validators.py | 10 +++++--- .../vm/tests/latest/test_vm_defaults.py | 24 +++++++++++++++++-- 4 files changed, 32 insertions(+), 8 deletions(-) diff --git a/src/command_modules/azure-cli-vm/HISTORY.rst b/src/command_modules/azure-cli-vm/HISTORY.rst index 0e7f9e35f00..cd2b4a3a714 100644 --- a/src/command_modules/azure-cli-vm/HISTORY.rst +++ b/src/command_modules/azure-cli-vm/HISTORY.rst @@ -5,7 +5,7 @@ Release History 2.2.9 ++++++ -* `vm/vmss create`: `--authentication-type` now accepts "all" to create a VM with password and ssh authentication. +* `vm/vmss create`: `--authentication-type` now accepts/infers "all" to create a VM with both password and ssh authentication. 2.2.8 ++++++ diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_template_builder.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_template_builder.py index 5f745161c60..4c66d654eca 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_template_builder.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_template_builder.py @@ -266,7 +266,7 @@ def _build_os_profile(): if ssh_key_value and ssh_key_path: os_profile['linuxConfiguration'] = { - 'disablePasswordAuthentication': authentication_type != 'all', + 'disablePasswordAuthentication': authentication_type == 'ssh', 'ssh': { 'publicKeys': [ { @@ -709,7 +709,7 @@ def build_vmss_resource(cmd, name, naming_prefix, location, tags, overprovision, if ssh_key_value and ssh_key_path: os_profile['linuxConfiguration'] = { - 'disablePasswordAuthentication': authentication_type != 'all', + 'disablePasswordAuthentication': authentication_type == 'ssh', 'ssh': { 'publicKeys': [ { diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py index efcb63a2af2..a145c772583 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py @@ -827,9 +827,13 @@ def _validate_vm_vmss_create_auth(namespace): raise CLIError("Unable to resolve OS type. Specify '--os-type' argument.") if not namespace.authentication_type: - # apply default auth type (password for Windows, ssh for Linux) by examining the OS type - namespace.authentication_type = 'password' \ - if (namespace.os_type.lower() == 'windows' or namespace.admin_password) else 'ssh' + # if both ssh key and password, infer that authentication_type is all. + if namespace.ssh_key_value and namespace.admin_password: + namespace.authentication_type = 'all' + else: + # apply default auth type (password for Windows, ssh for Linux) by examining the OS type + namespace.authentication_type = 'password' \ + if (namespace.os_type.lower() == 'windows' or namespace.admin_password) else 'ssh' if namespace.os_type.lower() == 'windows' and namespace.authentication_type == 'ssh': raise CLIError('SSH not supported for Windows VMs.') diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_defaults.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_defaults.py index 2a3fc59f193..847aae1a11e 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_defaults.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_defaults.py @@ -282,10 +282,18 @@ def test_default_windows(self): def test_windows_password_and_ssh_fails(self): ns = TestVMDefaultAuthType._set_ns() ns.os_type = "WindowS" - ns.authentication_type = 'all' + ns.authentication_type = None ns.admin_username = 'user12345' ns.admin_password = 'verySecret123' + ns.ssh_key_value = self._get_test_ssh_key() + + # test fails if authentication_type implicit + with self.assertRaises(CLIError) as context: + _validate_vm_vmss_create_auth(ns) + self.assertTrue("SSH not supported for Windows VMs. Use password authentication." in str(context.exception)) + # test fails if authentication type explicit + ns.authentication_type = 'all' with self.assertRaises(CLIError) as context: _validate_vm_vmss_create_auth(ns) self.assertTrue("SSH not supported for Windows VMs. Use password authentication." in str(context.exception)) @@ -318,7 +326,7 @@ def test_linux_with_password(self): _validate_vm_vmss_create_auth(ns) self.assertTrue("SSH key cannot be used with password authentication type." in str(context.exception)) - def test_linux_with_password_and_ssh(self): + def test_linux_with_password_and_ssh_explicit(self): ns = TestVMDefaultAuthType._set_ns() ns.os_type = "LINux" ns.authentication_type = 'all' @@ -330,6 +338,18 @@ def test_linux_with_password_and_ssh(self): self.assertEqual(ns.authentication_type, 'all') self.assertEqual(ns.ssh_dest_key_path, '/home/{}/.ssh/authorized_keys'.format(ns.admin_username)) + def test_linux_with_password_and_ssh_explicit(self): + ns = TestVMDefaultAuthType._set_ns() + ns.os_type = "LINux" + ns.authentication_type = None + ns.admin_username = 'user12345' + ns.admin_password = 'verySecret!!!' + ns.ssh_key_value = self._get_test_ssh_key() + + _validate_vm_vmss_create_auth(ns) + self.assertEqual(ns.authentication_type, 'all') + self.assertEqual(ns.ssh_dest_key_path, '/home/{}/.ssh/authorized_keys'.format(ns.admin_username)) + class TestVMImageDefaults(unittest.TestCase): @mock.patch('azure.cli.command_modules.vm._validators._compute_client_factory', autospec=True) From 0f3e2cfc3fbeb58b19232b697b14ffad00ed30a6 Mon Sep 17 00:00:00 2001 From: Oluwatosin Adewale Date: Mon, 19 Nov 2018 12:08:19 -0800 Subject: [PATCH 8/9] Updated help text. Fix conflict by checking out ephemeral os disk recording from dev branch. --- .../azure/cli/command_modules/vm/_params.py | 2 +- .../test_vmss_create_ephemeral_os_disk.yaml | 2881 ++--------------- 2 files changed, 329 insertions(+), 2554 deletions(-) diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_params.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_params.py index 57f4394b889..23fbd0f7392 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_params.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_params.py @@ -410,7 +410,7 @@ def load_arguments(self, _): c.argument('admin_password', help="Password for the VM if authentication type is 'Password'.") c.argument('ssh_key_value', help='SSH public key or public key file path.', completer=FilesCompleter(), type=file_type) c.argument('ssh_dest_key_path', help='Destination file path on the VM for the SSH key.') - c.argument('authentication_type', help='Type of authentication to use with the VM. Defaults to password for Windows and SSH public key for Linux. If "all" is specified, a password and SSH public key must be provided.', arg_type=get_enum_type(['ssh', 'password', 'all'])) + c.argument('authentication_type', help='Type of authentication to use with the VM. Defaults to password for Windows and SSH public key for Linux. "all" enables both ssh and password authentication. ', arg_type=get_enum_type(['ssh', 'password', 'all'])) with self.argument_context(scope, arg_group='Storage') as c: if StorageAccountTypes: diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_ephemeral_os_disk.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_ephemeral_os_disk.yaml index 576ad7bac4c..a40a7314443 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_ephemeral_os_disk.yaml +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_ephemeral_os_disk.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-11-10T02:01:09Z"}}' + "date": "2018-11-15T00:03:38Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,18 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--location --name --tag] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-10T02:01:09Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-15T00:03:38Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:11 GMT'] + date: ['Thu, 15 Nov 2018 00:03:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -35,18 +36,20 @@ interactions: CommandName: [vmss create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-10T02:01:09Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-15T00:03:38Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:12 GMT'] + date: ['Thu, 15 Nov 2018 00:03:42 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -106,9 +109,9 @@ interactions: content-length: ['2235'] content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] content-type: [text/plain; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:13 GMT'] + date: ['Thu, 15 Nov 2018 00:03:42 GMT'] etag: ['"60d07919b4224266adafb81340896eea100dc887"'] - expires: ['Sat, 10 Nov 2018 02:06:13 GMT'] + expires: ['Thu, 15 Nov 2018 00:08:42 GMT'] source-age: ['0'] strict-transport-security: [max-age=31536000] vary: ['Authorization,Accept-Encoding'] @@ -116,12 +119,12 @@ interactions: x-cache: [MISS] x-cache-hits: ['0'] x-content-type-options: [nosniff] - x-fastly-request-id: [f63af10293de96fe82a768c49747c077de2afca5] + x-fastly-request-id: [81478409eb5c1046845e12f436f19f6b396a5d0d] x-frame-options: [deny] x-geo-block-list: [''] - x-github-request-id: ['2F36:6C32:62425D:6B1452:5BE63BE9'] - x-served-by: [cache-dfw18632-DFW] - x-timer: ['S1541815274.776896,VS0,VE75'] + x-github-request-id: ['7480:0B97:3A4ECD4:3CE8AA0:5BECB7DE'] + x-served-by: [cache-sea1029-SEA] + x-timer: ['S1542240223.589485,VS0,VE174'] x-xss-protection: [1; mode=block] status: {code: 200, message: OK} - request: @@ -131,6 +134,8 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] @@ -142,7 +147,7 @@ interactions: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:14 GMT'] + date: ['Thu, 15 Nov 2018 00:03:43 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -151,7 +156,8 @@ interactions: status: {code: 200, message: OK} - request: body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + "contentVersion": "1.0.0.0", "parameters": {"adminPassword": {"type": "securestring", + "metadata": {"description": "Secure adminPassword"}}}, "variables": {}, "resources": [{"name": "cli-test-vmss-local-1VNET", "type": "Microsoft.Network/virtualNetworks", "location": "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": @@ -178,39 +184,39 @@ interactions: "diffDiskSettings": {"option": "Local"}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "16.04-LTS", "version": "latest"}, "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": "premium_lrs"}, "createOption": - "empty", "diskSizeGB": 1}]}, "osProfile": {"computerNamePrefix": "clitec15e", - "adminUsername": "tosin", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"path": "/home/tosin/.ssh/authorized_keys", "keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "clitec15eNic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "clitec15eIPConfig", + "empty", "diskSizeGB": 1}]}, "osProfile": {"computerNamePrefix": "clite94fe", + "adminUsername": "clitest1", "adminPassword": "[parameters(\''adminPassword\'')]"}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "clite94feNic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "clite94feIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool"}]}}]}}]}}, "singlePlacementGroup": null}}], "outputs": {"VMSS": {"type": "object", "value": "[reference(resourceId(\''Microsoft.Compute/virtualMachineScaleSets\'', \''cli-test-vmss-local-1\''),providers(\''Microsoft.Compute\'', - \''virtualMachineScaleSets\'').apiVersions[0])]"}}}, "parameters": {}, "mode": - "Incremental"}}''' + \''virtualMachineScaleSets\'').apiVersions[0])]"}}}, "parameters": {"adminPassword": + {"value": "testPassword0"}}, "mode": "Incremental"}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Length: ['4648'] + Content-Length: ['4309'] Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","name":"vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","properties":{"templateHash":"6043111070468457383","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-10T02:01:17.6080272Z","duration":"PT1.2612799S","correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-1"}]}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_WgVDI2gKOyN6htybZp4r2TGerLgcuf1K","name":"vmss_deploy_WgVDI2gKOyN6htybZp4r2TGerLgcuf1K","properties":{"templateHash":"508843650278524733","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-15T00:03:46.3823925Z","duration":"PT1.0013878S","correlationId":"b0e3359b-93e6-4e1a-970c-bd71d18c20b8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-1"}]}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/operationStatuses/08586597916091308760?api-version=2018-05-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_WgVDI2gKOyN6htybZp4r2TGerLgcuf1K/operationStatuses/08586593666600966214?api-version=2018-05-01'] cache-control: [no-cache] - content-length: ['2843'] + content-length: ['2881'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:17 GMT'] + date: ['Thu, 15 Nov 2018 00:03:46 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -224,1897 +230,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A01%3A25Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[]}'} - headers: - cache-control: [no-cache] - content-length: ['12'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:25 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A01%3A35Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[]}'} - headers: - cache-control: [no-cache] - content-length: ['12'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:35 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A01%3A46Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['32011'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:46 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 - response: - body: {string: '{"status":"Running"}'} - headers: - cache-control: [no-cache] - content-length: ['20'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:47 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A01%3A56Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['35596'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:01:57 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A02%3A07Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['54574'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:02:07 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A02%3A17Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['62048'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:02:17 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 - response: - body: {string: '{"status":"Running"}'} - headers: - cache-control: [no-cache] - content-length: ['20'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:02:18 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A02%3A28Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['65747'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:02:28 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A02%3A38Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['65747'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:02:39 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 - response: - body: {string: '{"status":"Running"}'} - headers: - cache-control: [no-cache] - content-length: ['20'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:02:48 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A02%3A49Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['69446'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:02:49 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A03%3A00Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['73145'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:00 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A03%3A10Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['73145'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:11 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 - response: - body: {string: '{"status":"Running"}'} - headers: - cache-control: [no-cache] - content-length: ['20'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:18 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A03%3A21Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['76844'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:21 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A03%3A31Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['76844'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:32 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A03%3A42Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"bf1ba453-d39c-40bb-a999-c4c8ee212664","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/bf1ba453-d39c-40bb-a999-c4c8ee212664/ticks/636774122053504504","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f292ea7a-dafe-4a88-866b-bddcbb066e3e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:25.3504504Z","submissionTimestamp":"2018-11-10T02:03:42.1082775Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6b28ffdc-72bc-40d2-8e34-734bcbce429e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/6b28ffdc-72bc-40d2-8e34-734bcbce429e/ticks/636774121902564338","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"4e8911b8-1b12-4252-8139-250e6c2a33a5","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:10.2564338Z","submissionTimestamp":"2018-11-10T02:03:32.0892745Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['84242'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:43 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 - response: - body: {string: '{"status":"Running"}'} - headers: - cache-control: [no-cache] - content-length: ['20'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:49 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A03%3A53Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"bf1ba453-d39c-40bb-a999-c4c8ee212664","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/bf1ba453-d39c-40bb-a999-c4c8ee212664/ticks/636774122053504504","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f292ea7a-dafe-4a88-866b-bddcbb066e3e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:25.3504504Z","submissionTimestamp":"2018-11-10T02:03:42.1082775Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6b28ffdc-72bc-40d2-8e34-734bcbce429e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/6b28ffdc-72bc-40d2-8e34-734bcbce429e/ticks/636774121902564338","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"4e8911b8-1b12-4252-8139-250e6c2a33a5","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:10.2564338Z","submissionTimestamp":"2018-11-10T02:03:32.0892745Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['84242'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:03:53 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A04%3A04Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"bf1ba453-d39c-40bb-a999-c4c8ee212664","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/bf1ba453-d39c-40bb-a999-c4c8ee212664/ticks/636774122053504504","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f292ea7a-dafe-4a88-866b-bddcbb066e3e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:25.3504504Z","submissionTimestamp":"2018-11-10T02:03:42.1082775Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6b28ffdc-72bc-40d2-8e34-734bcbce429e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/6b28ffdc-72bc-40d2-8e34-734bcbce429e/ticks/636774121902564338","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"4e8911b8-1b12-4252-8139-250e6c2a33a5","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:10.2564338Z","submissionTimestamp":"2018-11-10T02:03:32.0892745Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['84242'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:04 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A04%3A15Z%20and%20correlationId%20eq%20%272d3d9b7c-0f37-47a3-bed1-7c24f1a329d0%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"bf1ba453-d39c-40bb-a999-c4c8ee212664","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/bf1ba453-d39c-40bb-a999-c4c8ee212664/ticks/636774122053504504","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f292ea7a-dafe-4a88-866b-bddcbb066e3e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:25.3504504Z","submissionTimestamp":"2018-11-10T02:03:42.1082775Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6b28ffdc-72bc-40d2-8e34-734bcbce429e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/6b28ffdc-72bc-40d2-8e34-734bcbce429e/ticks/636774121902564338","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"4e8911b8-1b12-4252-8139-250e6c2a33a5","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:03:10.2564338Z","submissionTimestamp":"2018-11-10T02:03:32.0892745Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3c7f5966-f746-4ea0-aaec-2460766be902","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3c7f5966-f746-4ea0-aaec-2460766be902/ticks/636774121739677586","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"b427ec3b-d086-4b49-ad22-1faca87002d4","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:53.9677586Z","submissionTimestamp":"2018-11-10T02:03:11.0966581Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"e9dd8bc0-5987-4281-b68e-0b618714d125","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/e9dd8bc0-5987-4281-b68e-0b618714d125/ticks/636774121581536506","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9986f147-c9c2-4c6b-8a4d-7c6d1b275aef","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:38.1536506Z","submissionTimestamp":"2018-11-10T02:02:53.0906183Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d76b6335-9232-4906-a87e-2c10bfb397f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/d76b6335-9232-4906-a87e-2c10bfb397f3/ticks/636774121414279451","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"ecab30f6-16d5-4efb-84eb-4e8f1fb2d9ff","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:21.4279451Z","submissionTimestamp":"2018-11-10T02:02:44.1049662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"eea6a392-b12c-4405-9726-668834e3f7bf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/eea6a392-b12c-4405-9726-668834e3f7bf/ticks/636774121252491407","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"eb0beb4e-7b50-4f97-9891-8b05a186eb61","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:02:05.2491407Z","submissionTimestamp":"2018-11-10T02:02:22.1087418Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"aa7cb318-6058-4f35-b2d1-e718b9bc8128","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/aa7cb318-6058-4f35-b2d1-e718b9bc8128/ticks/636774121091202641","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"781e6bb5-fe01-4df4-9ce6-011696835393"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:49.1202641Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/95b3b0ba-4e6b-4ffe-bec6-dbc70cb6432c/ticks/636774121090265127","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:49.0265127Z","submissionTimestamp":"2018-11-10T02:02:12.0954006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3d2dc6fa-4829-4d04-9999-d5b8fedf9179","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6726d4d6-e21b-4d94-bf19-f99edc7db4c0","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/events/3d2dc6fa-4829-4d04-9999-d5b8fedf9179/ticks/636774121066514956","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"94f842a0-212a-4629-bc35-701280784e09","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:46.6514956Z","submissionTimestamp":"2018-11-10T02:02:02.090605Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"81d91f8a-09f0-4632-a6dd-2a5383717a91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/81d91f8a-09f0-4632-a6dd-2a5383717a91/ticks/636774121029247531","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"36641e66-4e23-402a-b8c3-7bfbe944e3a3","responseBody":"{\"name\":\"cli-test-vmss-local-1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a0fd253-4167-41c4-96fa-0c225c6d5a2f\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\",\"etag\":\"W/\\\"f6e668df-22a0-4800-87bf-732d3902510c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:01:42.9247531Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"1e000b2b-11ed-47c1-9cad-eb6a3e401b4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/1e000b2b-11ed-47c1-9cad-eb6a3e401b4b/ticks/636774121022591904","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"eaa0d1cc-289f-4b07-a1ee-4b94a4b0ca68","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:42.2591904Z","submissionTimestamp":"2018-11-10T02:02:00.1335414Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"6d27ee50-13a2-467b-a821-317b7ce5a0ea","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be7037a5-15b5-41b1-88b8-631264550be5","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/events/6d27ee50-13a2-467b-a821-317b7ce5a0ea/ticks/636774121019872696","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"99908822-4302-4825-aa46-7794f3be3399","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-1LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-1LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:41.9872696Z","submissionTimestamp":"2018-11-10T02:02:01.0967596Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c5dd790f-b65a-4994-8c93-5c9e410d9f04","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/c5dd790f-b65a-4994-8c93-5c9e410d9f04/ticks/636774120919080329","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"441dc044-1873-46ce-925f-fdd42ef75764","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:31.9080329Z","submissionTimestamp":"2018-11-10T02:01:51.092241Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"72e393a9-efd7-4591-a321-0e029cc783a3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/72e393a9-efd7-4591-a321-0e029cc783a3/ticks/636774120868707862","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e30bacd2-6f71-4d14-be1e-ade0b7581707","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:26.8707862Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"60297514-9d30-4f1e-b4a4-843f16cd734d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/60297514-9d30-4f1e-b4a4-843f16cd734d/ticks/636774120857114128","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"2de4c1d6-8a5a-413f-b62b-301e31ff904d","responseBody":"{\"name\":\"cli-test-vmss-local-1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP\",\"etag\":\"W/\\\"b0482dd1-1ae4-464e-ad83-6848afa4b8a3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"aec485ef-67f6-4c06-8407-ea995217f52f\",\"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":"2018-11-10T02:01:25.7114128Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"fb1377a4-5131-4dc8-9503-369b9f07ae65","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/fb1377a4-5131-4dc8-9503-369b9f07ae65/ticks/636774120854613836","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:25.4613836Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"3b0b3270-079e-472b-b50c-fc5e6ba70150","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/3b0b3270-079e-472b-b50c-fc5e6ba70150/ticks/636774120836832670","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"550f5837-5d56-40e3-ac15-51d71041d0b8","responseBody":"{\"name\":\"cli-test-vmss-local-1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\",\"etag\":\"W/\\\"a9169938-0526-4c4d-9341-f5d1d686122a\\\"\",\"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":"2018-11-10T02:01:23.683267Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"45e5add9-84eb-4cfb-98a3-dfc4483dd0ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1ab7aa7e-86d4-4f48-bb96-c094570fe926","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP/events/45e5add9-84eb-4cfb-98a3-dfc4483dd0ad/ticks/636774120829145773","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"67e3cd29-4169-4248-b278-91c8867a8faa","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.9145773Z","submissionTimestamp":"2018-11-10T02:01:42.1018073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"d9495952-29ad-4fb4-b284-b9e6b1638d7d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"43cba1a8-dccb-4af5-b639-7f3bf1d851e9","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/events/d9495952-29ad-4fb4-b284-b9e6b1638d7d/ticks/636774120826207597","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"d29cede0-cf4f-401e-8f5c-5b17c1735181","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"cli-test-vmss-local-1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:22.6207597Z","submissionTimestamp":"2018-11-10T02:01:42.104102Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"738277ea-a0e8-4524-96e5-ef69e43a0d50","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/738277ea-a0e8-4524-96e5-ef69e43a0d50/ticks/636774120778182247","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","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":"2018-11-10T02:01:17.8182247Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","description":"","eventDataId":"c096991b-48eb-4a92-8c95-786c8cea350e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7feb2ff0-e48c-11e8-bbdd-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi/events/c096991b-48eb-4a92-8c95-786c8cea350e/ticks/636774120748493858","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:01:14.8493858Z","submissionTimestamp":"2018-11-10T02:01:37.1310032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['84242'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:16 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597916091308760?api-version=2018-05-01 - response: - body: {string: '{"status":"Succeeded"}'} - headers: - cache-control: [no-cache] - content-length: ['22'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:20 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","name":"vmss_deploy_r6iCtOYf4mzU5qo7lRO6h6GOxbulhwpi","properties":{"templateHash":"6043111070468457383","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-10T02:04:06.5459884Z","duration":"PT2M50.1992411S","correlationId":"2d3d9b7c-0f37-47a3-bed1-7c24f1a329d0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"clitec15e","adminUsername":"tosin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/tosin/.ssh/authorized_keys","keyData":"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"diffDiskSettings":{"option":"Local"},"createOption":"FromImage","caching":"ReadOnly","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"},"dataDisks":[{"lun":0,"createOption":"Empty","caching":"None","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":1}]},"networkProfile":{"networkInterfaceConfigurations":[{"name":"clitec15eNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clitec15eIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":false,"uniqueId":"24d61316-cbd1-415b-bb7d-bac7bb6a06c9"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"}]}}'} - headers: - cache-control: [no-cache] - content-length: ['6232'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:20 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss show] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1?api-version=2018-10-01 - response: - body: {string: "{\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ - : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ - \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ - \n \"osProfile\": {\r\n \"computerNamePrefix\": \"clitec15e\"\ - ,\r\n \"adminUsername\": \"tosin\",\r\n \"linuxConfiguration\"\ - : {\r\n \"disablePasswordAuthentication\": true,\r\n \"\ - ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ - \ \"path\": \"/home/tosin/.ssh/authorized_keys\",\r\n \ - \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/\"\ - \r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\"\ - : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ - : true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\ - \n \"diffDiskSettings\": {\r\n \"option\": \"Local\"\r\ - \n },\r\n \"createOption\": \"FromImage\",\r\n \ - \ \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \ - \ \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\ - \n \"imageReference\": {\r\n \"publisher\": \"Canonical\"\ - ,\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\"\ - ,\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"createOption\"\ - : \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\"\ - : {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n \ - \ },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n \ - \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"\ - name\":\"clitec15eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ - :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ - ipConfigurations\":[{\"name\":\"clitec15eIPConfig\",\"properties\":{\"subnet\"\ - :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\"\ - }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"\ - }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"24d61316-cbd1-415b-bb7d-bac7bb6a06c9\"\ - \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1\"\ - ,\r\n \"name\": \"cli-test-vmss-local-1\"\r\n}"} - headers: - cache-control: [no-cache] - content-length: ['3576'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:20 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;190,Microsoft.Compute/GetVMScaleSet30Min;1286'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001?api-version=2018-05-01 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-10T02:01:09Z"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['384'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:21 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.20.0] - method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json - response: - body: {string: "{\n \"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\"\ - ,\n \"contentVersion\":\"1.0.0.0\",\n \"parameters\":{},\n \"variables\"\ - :{},\n \"resources\":[],\n\n \"outputs\":{\n \"aliases\":{\n \"\ - type\":\"object\",\n \"value\":{\n\n \"Linux\":{\n \"\ - CentOS\":{\n \"publisher\":\"OpenLogic\",\n \"offer\"\ - :\"CentOS\",\n \"sku\":\"7.3\",\n \"version\":\"latest\"\ - \n },\n \"CoreOS\":{\n \"publisher\":\"CoreOS\"\ - ,\n \"offer\":\"CoreOS\",\n \"sku\":\"Stable\",\n \ - \ \"version\":\"latest\"\n },\n \"Debian\":{\n\ - \ \"publisher\":\"credativ\",\n \"offer\":\"Debian\"\ - ,\n \"sku\":\"8\",\n \"version\":\"latest\"\n \ - \ },\n \"openSUSE-Leap\": {\n \"publisher\":\"SUSE\"\ - ,\n \"offer\":\"openSUSE-Leap\",\n \"sku\":\"42.3\"\ - ,\n \"version\": \"latest\"\n },\n \"RHEL\":{\n\ - \ \"publisher\":\"RedHat\",\n \"offer\":\"RHEL\",\n\ - \ \"sku\":\"7.3\",\n \"version\":\"latest\"\n \ - \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \ - \ \"offer\":\"SLES\",\n \"sku\":\"12-SP2\",\n \ - \ \"version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \ - \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\"\ - ,\n \"sku\":\"16.04-LTS\",\n \"version\":\"latest\"\n\ - \ }\n },\n\n \"Windows\":{\n \"Win2016Datacenter\"\ - :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ - offer\":\"WindowsServer\",\n \"sku\":\"2016-Datacenter\",\n \ - \ \"version\":\"latest\"\n },\n \"Win2012R2Datacenter\"\ - :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ - offer\":\"WindowsServer\",\n \"sku\":\"2012-R2-Datacenter\",\n\ - \ \"version\":\"latest\"\n },\n \"Win2012Datacenter\"\ - :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ - offer\":\"WindowsServer\",\n \"sku\":\"2012-Datacenter\",\n \ - \ \"version\":\"latest\"\n },\n \"Win2008R2SP1\"\ - :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ - offer\":\"WindowsServer\",\n \"sku\":\"2008-R2-SP1\",\n \ - \ \"version\":\"latest\"\n }\n }\n }\n }\n }\n\ - }\n"} - headers: - accept-ranges: [bytes] - access-control-allow-origin: ['*'] - cache-control: [max-age=300] - connection: [keep-alive] - content-length: ['2235'] - content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] - content-type: [text/plain; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:22 GMT'] - etag: ['"60d07919b4224266adafb81340896eea100dc887"'] - expires: ['Sat, 10 Nov 2018 02:09:22 GMT'] - source-age: ['0'] - strict-transport-security: [max-age=31536000] - vary: ['Authorization,Accept-Encoding'] - via: [1.1 varnish] - x-cache: [MISS] - x-cache-hits: ['0'] - x-content-type-options: [nosniff] - x-fastly-request-id: [af07660529ebcfa60958b4416d88d24947d8651b] - x-frame-options: [deny] - x-geo-block-list: [''] - x-github-request-id: ['7A20:0B97:23CCE04:256ABC5:5BE63CA6'] - x-served-by: [cache-sea1026-SEA] - x-timer: ['S1541815462.441210,VS0,VE96'] - x-xss-protection: [1; mode=block] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 - response: - body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli-test-vmss-local-1VNET\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\"\ - ,\r\n \"etag\": \"W/\\\"902e0dba-83c7-4bf5-9677-8cb711c0d12d\\\"\",\r\ - \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4aecfd69-bedb-4db0-b9bf-95dea1d1e0ab\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \ - \ \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\"\ - : [\r\n {\r\n \"name\": \"cli-test-vmss-local-1Subnet\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ - ,\r\n \"etag\": \"W/\\\"902e0dba-83c7-4bf5-9677-8cb711c0d12d\\\"\ - \",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n\ - \ \"ipConfigurations\": [\r\n {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/virtualMachines/0/networkInterfaces/clitec15eNic/ipConfigurations/clitec15eIPConfig\"\ - \r\n },\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/virtualMachines/1/networkInterfaces/clitec15eNic/ipConfigurations/clitec15eIPConfig\"\ - \r\n }\r\n ]\r\n },\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\ - \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ - : false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n\ - \ ]\r\n}"} - headers: - cache-control: [no-cache] - content-length: ['2281'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:22 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": - [{"apiVersion": "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", - "name": "cli-test-vmss-local-2LBPublicIP", "location": "westus", "tags": {}, - "dependsOn": [], "properties": {"publicIPAllocationMethod": "Dynamic"}}, {"type": - "Microsoft.Network/loadBalancers", "name": "cli-test-vmss-local-2LB", "location": - "westus", "tags": {}, "apiVersion": "2018-01-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/cli-test-vmss-local-2LBPublicIP"], - "properties": {"backendAddressPools": [{"name": "cli-test-vmss-local-2LBBEPool"}], - "inboundNatPools": [{"name": "cli-test-vmss-local-2LBNatPool", "properties": - {"frontendIPConfiguration": {"id": "[concat(resourceId(\''Microsoft.Network/loadBalancers\'', - \''cli-test-vmss-local-2LB\''), \''/frontendIPConfigurations/\'', \''loadBalancerFrontEnd\'')]"}, - "protocol": "tcp", "frontendPortRangeStart": "50000", "frontendPortRangeEnd": - "50119", "backendPort": 22}}], "frontendIPConfigurations": [{"name": "loadBalancerFrontEnd", - "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"}}}]}}, - {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "cli-test-vmss-local-2", - "location": "westus", "tags": {}, "apiVersion": "2018-10-01", "dependsOn": ["Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"], - "sku": {"name": "Standard_DS1_v2", "capacity": 2}, "properties": {"overprovision": - false, "upgradePolicy": {"mode": "manual"}, "virtualMachineProfile": {"storageProfile": - {"osDisk": {"createOption": "FromImage", "caching": "ReadOnly", "managedDisk": - {"storageAccountType": null}, "diffDiskSettings": {"option": "Local"}}, "imageReference": - {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "16.04-LTS", "version": - "latest"}}, "osProfile": {"computerNamePrefix": "clite7c20", "adminUsername": - "tosin", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/tosin/.ssh/authorized_keys", "keyData": "ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "clite7c20Nic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "clite7c20IPConfig", - "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"}, - "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool"}], - "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool"}]}}]}}]}}, - "singlePlacementGroup": null}}], "outputs": {"VMSS": {"type": "object", "value": - "[reference(resourceId(\''Microsoft.Compute/virtualMachineScaleSets\'', \''cli-test-vmss-local-2\''),providers(\''Microsoft.Compute\'', - \''virtualMachineScaleSets\'').apiVersions[0])]"}}}, "parameters": {}, "mode": - "Incremental"}}''' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Length: ['4054'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","name":"vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","properties":{"templateHash":"15214464966890777813","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-10T02:04:25.7550153Z","duration":"PT1.0631667S","correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-2"}]}}'} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/operationStatuses/08586597914207857749?api-version=2018-05-01'] - cache-control: [no-cache] - content-length: ['2154'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:25 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A04%3A34Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[]}'} - headers: - cache-control: [no-cache] - content-length: ['12'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:34 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - 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%202018-09-29T10%3A04%3A44Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 - response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} - headers: - cache-control: [no-cache] - content-length: ['3847'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:44 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - 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: [vmss create] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A04%3A55Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586593666600966214?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['11358'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:55 GMT'] + date: ['Thu, 15 Nov 2018 00:04:16 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -2124,17 +256,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586593666600966214?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:04:56 GMT'] + date: ['Thu, 15 Nov 2018 00:04:46 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -2148,50 +282,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A05%3A06Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586593666600966214?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['31224'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:05:05 GMT'] + date: ['Thu, 15 Nov 2018 00:05:17 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -2201,62 +308,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A05%3A16Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586593666600966214?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['46013'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:05:16 GMT'] + date: ['Thu, 15 Nov 2018 00:05:47 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -2266,17 +334,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586593666600966214?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:05:26 GMT'] + date: ['Thu, 15 Nov 2018 00:06:16 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -2290,62 +360,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A05%3A27Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586593666600966214?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"status":"Succeeded"}'} headers: cache-control: [no-cache] - content-length: ['46013'] + content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:05:27 GMT'] + date: ['Thu, 15 Nov 2018 00:06:47 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -2355,66 +386,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --disable-overprovision + --instance-count --data-disk-sizes-gb --storage-sku --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A05%3A38Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_WgVDI2gKOyN6htybZp4r2TGerLgcuf1K","name":"vmss_deploy_WgVDI2gKOyN6htybZp4r2TGerLgcuf1K","properties":{"templateHash":"508843650278524733","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-15T00:06:46.1548646Z","duration":"PT3M0.7738599S","correlationId":"b0e3359b-93e6-4e1a-970c-bd71d18c20b8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli-test-vmss-local-1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"clite94fe","adminUsername":"clitest1","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"diffDiskSettings":{"option":"Local"},"createOption":"FromImage","caching":"ReadOnly","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"},"dataDisks":[{"lun":0,"createOption":"Empty","caching":"None","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":1}]},"networkProfile":{"networkInterfaceConfigurations":[{"name":"clite94feNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clite94feIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":false,"uniqueId":"e461bc51-1d1d-4ab5-8d40-bef49940645c"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET"}]}}'} headers: cache-control: [no-cache] - content-length: ['49712'] + content-length: ['5813'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:05:38 GMT'] + date: ['Thu, 15 Nov 2018 00:06:47 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -2422,73 +410,61 @@ interactions: headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] + CommandName: [vmss show] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] + ParameterSetName: [-g -n] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A05%3A49Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1?api-version=2018-10-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: "{\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ + \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ + : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ + \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ + \n \"osProfile\": {\r\n \"computerNamePrefix\": \"clite94fe\"\ + ,\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\"\ + : {\r\n \"disablePasswordAuthentication\": false,\r\n \"\ + provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \ + \ \"allowExtensionOperations\": true\r\n },\r\n \"storageProfile\"\ + : {\r\n \"osDisk\": {\r\n \"diffDiskSettings\": {\r\n \ + \ \"option\": \"Local\"\r\n },\r\n \"createOption\"\ + : \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\"\ + : {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\ + \n },\r\n \"imageReference\": {\r\n \"publisher\":\ + \ \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"\ + sku\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n },\r\ + \n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \ + \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ + ,\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ + : \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 1\r\n \ + \ }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ + :[{\"name\":\"clite94feNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ + :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ + ipConfigurations\":[{\"name\":\"clite94feIPConfig\",\"properties\":{\"subnet\"\ + :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ + },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ + :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/backendAddressPools/cli-test-vmss-local-1LBBEPool\"\ + }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-1LB/inboundNatPools/cli-test-vmss-local-1LBNatPool\"\ + }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ + overprovision\": false,\r\n \"uniqueId\": \"e461bc51-1d1d-4ab5-8d40-bef49940645c\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1\"\ + ,\r\n \"name\": \"cli-test-vmss-local-1\"\r\n}"} headers: cache-control: [no-cache] - content-length: ['53410'] + content-length: ['2996'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:05:49 GMT'] + date: ['Thu, 15 Nov 2018 00:06:48 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;191,Microsoft.Compute/GetVMScaleSet30Min;1291'] status: {code: 200, message: OK} - request: body: null @@ -2497,17 +473,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001?api-version=2018-05-01 response: - body: {string: '{"status":"Running"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001","name":"cli_test_vmss_create_ephemeral_os_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-15T00:03:38Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] - content-length: ['20'] + content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:05:56 GMT'] + date: ['Thu, 15 Nov 2018 00:06:48 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -2517,75 +497,73 @@ interactions: - request: body: null headers: - Accept: [application/json] + Accept: ['*/*'] Accept-Encoding: ['gzip, deflate'] - CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + User-Agent: [python-requests/2.20.0] 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%202018-09-29T10%3A06%3A00Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: "{\n \"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\"\ + ,\n \"contentVersion\":\"1.0.0.0\",\n \"parameters\":{},\n \"variables\"\ + :{},\n \"resources\":[],\n\n \"outputs\":{\n \"aliases\":{\n \"\ + type\":\"object\",\n \"value\":{\n\n \"Linux\":{\n \"\ + CentOS\":{\n \"publisher\":\"OpenLogic\",\n \"offer\"\ + :\"CentOS\",\n \"sku\":\"7.3\",\n \"version\":\"latest\"\ + \n },\n \"CoreOS\":{\n \"publisher\":\"CoreOS\"\ + ,\n \"offer\":\"CoreOS\",\n \"sku\":\"Stable\",\n \ + \ \"version\":\"latest\"\n },\n \"Debian\":{\n\ + \ \"publisher\":\"credativ\",\n \"offer\":\"Debian\"\ + ,\n \"sku\":\"8\",\n \"version\":\"latest\"\n \ + \ },\n \"openSUSE-Leap\": {\n \"publisher\":\"SUSE\"\ + ,\n \"offer\":\"openSUSE-Leap\",\n \"sku\":\"42.3\"\ + ,\n \"version\": \"latest\"\n },\n \"RHEL\":{\n\ + \ \"publisher\":\"RedHat\",\n \"offer\":\"RHEL\",\n\ + \ \"sku\":\"7.3\",\n \"version\":\"latest\"\n \ + \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \ + \ \"offer\":\"SLES\",\n \"sku\":\"12-SP2\",\n \ + \ \"version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \ + \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\"\ + ,\n \"sku\":\"16.04-LTS\",\n \"version\":\"latest\"\n\ + \ }\n },\n\n \"Windows\":{\n \"Win2016Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2016-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\n \"Win2012R2Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2012-R2-Datacenter\",\n\ + \ \"version\":\"latest\"\n },\n \"Win2012Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2012-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\n \"Win2008R2SP1\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2008-R2-SP1\",\n \ + \ \"version\":\"latest\"\n }\n }\n }\n }\n }\n\ + }\n"} headers: - cache-control: [no-cache] - content-length: ['53410'] - content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:00 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + accept-ranges: [bytes] + access-control-allow-origin: ['*'] + cache-control: [max-age=300] + connection: [keep-alive] + content-length: ['2235'] + content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox] + content-type: [text/plain; charset=utf-8] + date: ['Thu, 15 Nov 2018 00:06:49 GMT'] + etag: ['"60d07919b4224266adafb81340896eea100dc887"'] + expires: ['Thu, 15 Nov 2018 00:11:49 GMT'] + source-age: ['159'] + strict-transport-security: [max-age=31536000] + vary: ['Authorization,Accept-Encoding'] + via: [1.1 varnish] + x-cache: [HIT] + x-cache-hits: ['1'] x-content-type-options: [nosniff] + x-fastly-request-id: [72f371dab18ea777b067597690b66ae5eea19f68] + x-frame-options: [deny] + x-geo-block-list: [''] + x-github-request-id: ['87D6:056C:E79AD:10256D:5BECB7F8'] + x-served-by: [cache-dfw18633-DFW] + x-timer: ['S1542240409.265765,VS0,VE1'] + x-xss-protection: [1; mode=block] status: {code: 200, message: OK} - request: body: null @@ -2594,153 +572,111 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + networkmanagementclient/2.2.1 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A06%3A10Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli-test-vmss-local-1VNET\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET\"\ + ,\r\n \"etag\": \"W/\\\"c92e481c-80a6-4584-886e-18a5f25f7e91\\\"\",\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ + : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3fdc642d-8737-4c48-81a5-e19045fd61d7\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \ + \ \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\"\ + : [\r\n {\r\n \"name\": \"cli-test-vmss-local-1Subnet\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ + ,\r\n \"etag\": \"W/\\\"c92e481c-80a6-4584-886e-18a5f25f7e91\\\"\ + \",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n\ + \ \"ipConfigurations\": [\r\n {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/virtualMachines/0/networkInterfaces/clite94feNic/ipConfigurations/clite94feIPConfig\"\ + \r\n },\r\n {\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-1/virtualMachines/1/networkInterfaces/clite94feNic/ipConfigurations/clite94feIPConfig\"\ + \r\n }\r\n ]\r\n },\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\ + \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n\ + \ ]\r\n}"} headers: cache-control: [no-cache] - content-length: ['57109'] + content-length: ['2281'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:10 GMT'] + date: ['Thu, 15 Nov 2018 00:06:49 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: - body: null + 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": + [{"apiVersion": "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", + "name": "cli-test-vmss-local-2LBPublicIP", "location": "westus", "tags": {}, + "dependsOn": [], "properties": {"publicIPAllocationMethod": "Dynamic"}}, {"type": + "Microsoft.Network/loadBalancers", "name": "cli-test-vmss-local-2LB", "location": + "westus", "tags": {}, "apiVersion": "2018-01-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/cli-test-vmss-local-2LBPublicIP"], + "properties": {"backendAddressPools": [{"name": "cli-test-vmss-local-2LBBEPool"}], + "inboundNatPools": [{"name": "cli-test-vmss-local-2LBNatPool", "properties": + {"frontendIPConfiguration": {"id": "[concat(resourceId(\''Microsoft.Network/loadBalancers\'', + \''cli-test-vmss-local-2LB\''), \''/frontendIPConfigurations/\'', \''loadBalancerFrontEnd\'')]"}, + "protocol": "tcp", "frontendPortRangeStart": "50000", "frontendPortRangeEnd": + "50119", "backendPort": 22}}], "frontendIPConfigurations": [{"name": "loadBalancerFrontEnd", + "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"}}}]}}, + {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "cli-test-vmss-local-2", + "location": "westus", "tags": {}, "apiVersion": "2018-10-01", "dependsOn": ["Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"], + "sku": {"name": "Standard_DS1_v2", "capacity": 2}, "properties": {"overprovision": + false, "upgradePolicy": {"mode": "manual"}, "virtualMachineProfile": {"storageProfile": + {"osDisk": {"createOption": "FromImage", "caching": "ReadOnly", "managedDisk": + {"storageAccountType": null}, "diffDiskSettings": {"option": "Local"}}, "imageReference": + {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "16.04-LTS", "version": + "latest"}}, "osProfile": {"computerNamePrefix": "clite8ab0", "adminUsername": + "clitest1", "adminPassword": "[parameters(\''adminPassword\'')]"}, "networkProfile": + {"networkInterfaceConfigurations": [{"name": "clite8ab0Nic", "properties": {"primary": + "true", "ipConfigurations": [{"name": "clite8ab0IPConfig", "properties": {"subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"}, + "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool"}], + "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool"}]}}]}}]}}, + "singlePlacementGroup": null}}], "outputs": {"VMSS": {"type": "object", "value": + "[reference(resourceId(\''Microsoft.Compute/virtualMachineScaleSets\'', \''cli-test-vmss-local-2\''),providers(\''Microsoft.Compute\'', + \''virtualMachineScaleSets\'').apiVersions[0])]"}}}, "parameters": {"adminPassword": + {"value": "testPassword0"}}, "mode": "Incremental"}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] + Content-Length: ['3715'] Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A06%3A21Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_p7L3eKLDATeXjcL6xgHP3UezYcTesm3y","name":"vmss_deploy_p7L3eKLDATeXjcL6xgHP3UezYcTesm3y","properties":{"templateHash":"8581684624276593118","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-15T00:06:52.2561197Z","duration":"PT1.0244956S","correlationId":"5b1f5b06-0987-4e43-b404-fd7918e25761","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-2"}]}}'} headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_p7L3eKLDATeXjcL6xgHP3UezYcTesm3y/operationStatuses/08586593664742460169?api-version=2018-05-01'] cache-control: [no-cache] - content-length: ['57109'] + content-length: ['2192'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:21 GMT'] + date: ['Thu, 15 Nov 2018 00:06:51 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] 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} + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 201, message: Created} - request: body: null headers: @@ -2748,17 +684,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586593664742460169?api-version=2018-05-01 response: body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:27 GMT'] + date: ['Thu, 15 Nov 2018 00:07:22 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -2772,78 +710,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A06%3A31Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586593664742460169?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce879b8f-5514-4da1-a357-52907be5c9c7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/ce879b8f-5514-4da1-a357-52907be5c9c7/ticks/636774123597274431","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"045bbf08-99ef-4f70-8fb6-bf78dd5ab41e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:59.7274431Z","submissionTimestamp":"2018-11-10T02:06:25.0865197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['60808'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:32 GMT'] + date: ['Thu, 15 Nov 2018 00:07:52 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -2853,78 +736,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A06%3A42Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586593664742460169?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce879b8f-5514-4da1-a357-52907be5c9c7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/ce879b8f-5514-4da1-a357-52907be5c9c7/ticks/636774123597274431","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"045bbf08-99ef-4f70-8fb6-bf78dd5ab41e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:59.7274431Z","submissionTimestamp":"2018-11-10T02:06:25.0865197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['60808'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:42 GMT'] + date: ['Thu, 15 Nov 2018 00:08:22 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -2934,78 +762,23 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.51] - accept-language: [en-US] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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%202018-09-29T10%3A06%3A53Z%20and%20correlationId%20eq%20%277a9155b7-771b-43cf-87b9-eb509c210a6f%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586593664742460169?api-version=2018-05-01 response: - body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce879b8f-5514-4da1-a357-52907be5c9c7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/ce879b8f-5514-4da1-a357-52907be5c9c7/ticks/636774123597274431","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"045bbf08-99ef-4f70-8fb6-bf78dd5ab41e","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:59.7274431Z","submissionTimestamp":"2018-11-10T02:06:25.0865197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"dc728d5a-e64a-412d-bff6-6403c5274146","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/dc728d5a-e64a-412d-bff6-6403c5274146/ticks/636774123442095204","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e584bb13-cc2d-4ad4-ae2d-06f4eab30ed9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:44.2095204Z","submissionTimestamp":"2018-11-10T02:06:02.1405198Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/84a39f32-e30b-4ba9-b4dd-8e42fa7e52b8/ticks/636774123285325410","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"18b67e6c-153e-4838-93a9-8b362667b9e9","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:28.532541Z","submissionTimestamp":"2018-11-10T02:05:42.0987338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"1db73317-8224-4c58-80de-049bed48b84f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/1db73317-8224-4c58-80de-049bed48b84f/ticks/636774123119757228","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"6af1cb23-2e19-44ef-858a-b81f3b05ac6f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:05:11.9757228Z","submissionTimestamp":"2018-11-10T02:05:34.1017909Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"016cfe78-7571-4590-a75e-b9a44b8169f3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/016cfe78-7571-4590-a75e-b9a44b8169f3/ticks/636774122954420487","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"13a83cd8-2b88-48df-8fd4-27ddc664e004"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:55.4420487Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"564a933a-2927-4c92-b956-f43e41f261b7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/564a933a-2927-4c92-b956-f43e41f261b7/ticks/636774122952232792","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:55.2232792Z","submissionTimestamp":"2018-11-10T02:05:11.0883108Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"e4c9f60f-f3ec-42bf-8441-3bc9ab182abe","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"22d985b4-cd13-4dfb-8bd8-75a1ab75e721","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2/events/e4c9f60f-f3ec-42bf-8441-3bc9ab182abe/ticks/636774122926550869","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"aef876fc-9d77-48be-a629-bfaf9cd29e06","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:52.6550869Z","submissionTimestamp":"2018-11-10T02:05:11.0873101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"da4b9128-b8f9-4447-8fd5-e75e81c8cc90","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/da4b9128-b8f9-4447-8fd5-e75e81c8cc90/ticks/636774122877842899","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"d3ccd3bd-e03d-482a-9713-6d8f473a8be2","responseBody":"{\"name\":\"cli-test-vmss-local-2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9a01feb-4b39-45c2-8e46-7b88940652e3\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\",\"etag\":\"W/\\\"c18bac6b-a448-4e85-bd0b-5338c3337bfe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":50000,\"frontendPortRangeEnd\":50119,\"backendPort\":22,\"protocol\":\"Tcp\",\"idleTimeoutInMinutes\":4,\"enableFloatingIP\":false,\"enableDestinationServiceEndpoint\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"}},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}]},\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2018-11-10T02:04:47.7842899Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"7b74da2c-c711-4593-8467-dfd9ee3bbc04","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"08a90408-6955-43d5-be44-0120415b75d7","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/events/7b74da2c-c711-4593-8467-dfd9ee3bbc04/ticks/636774122863467765","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"57c06f59-f84e-4e6c-bfb6-12f5ae825591","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"cli-test-vmss-local-2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"cli-test-vmss-local-2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/frontendIPConfigurations/loadBalancerFrontEnd\"},\"protocol\":\"tcp\",\"frontendPortRangeStart\":\"50000\",\"frontendPortRangeEnd\":\"50119\",\"backendPort\":22}}],\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:46.3467765Z","submissionTimestamp":"2018-11-10T02:05:05.0802051Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"50eb0a10-ea98-4e78-a805-11cefe24d34a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/50eb0a10-ea98-4e78-a805-11cefe24d34a/ticks/636774122856797911","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"fbe2de9c-8462-44c1-9d6d-32dc9332cfcd","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:45.6797911Z","submissionTimestamp":"2018-11-10T02:05:07.0939294Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ce2ad143-3e62-41ce-bf03-f22b5d34d791","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/ce2ad143-3e62-41ce-bf03-f22b5d34d791/ticks/636774122801063529","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8b107586-cd23-44f8-a2f8-7c8f119f309c","responseBody":"{\"name\":\"cli-test-vmss-local-2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP\",\"etag\":\"W/\\\"213b36df-d028-4581-bf05-2cb92358e32a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"79108230-e178-4ed2-ac50-096da09435fe\",\"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":"2018-11-10T02:04:40.1063529Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"0ba085be-548c-4ee5-a808-924edc426574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/0ba085be-548c-4ee5-a808-924edc426574/ticks/636774122799969511","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:39.9969511Z","submissionTimestamp":"2018-11-10T02:05:02.0840949Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"312f73ea-32b7-4743-8a63-7c236045b2ad","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"554c1cc5-2ba2-4a08-9229-88e354cca305","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP/events/312f73ea-32b7-4743-8a63-7c236045b2ad/ticks/636774122669418335","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"60ea451f-bbfc-4970-bf55-6e1ac19376ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:26.9418335Z","submissionTimestamp":"2018-11-10T02:04:42.1012163Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"82ec7a6f-a49c-4755-bdaf-627e22b96ac4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/82ec7a6f-a49c-4755-bdaf-627e22b96ac4/ticks/636774122659580043","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","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":"2018-11-10T02:04:25.9580043Z","submissionTimestamp":"2018-11-10T02:04:42.1409472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1541814971","nbf":"1541814971","exp":"1541818871","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8JAAAA05OMDEzsD2X2veD7xx+QTsYrB1TjeIHX+V74w+egb/HKR0Vz/bx2s8yrkrjH0OoTCsaV4vfbcHrUrRu0F+52g93n8WJOLZAYfpBbVPOqKoQ=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.160.11","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"jJOLRxZgRU27o77E9EgGAA","ver":"1.0"},"correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","description":"","eventDataId":"ca9d55db-a49a-4399-ae42-5cb48cf9260f","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f0a425d0-e48c-11e8-b248-acde48001122","clientIpAddress":"131.107.174.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr/events/ca9d55db-a49a-4399-ae42-5cb48cf9260f/ticks/636774122633485227","level":"Informational","resourceGroupName":"cli_test_vmss_create_ephemeral_os_disk000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2018-11-10T02:04:23.3485227Z","submissionTimestamp":"2018-11-10T02:04:42.139946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'} + body: {string: '{"status":"Running"}'} headers: cache-control: [no-cache] - content-length: ['60808'] + content-length: ['20'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:53 GMT'] + date: ['Thu, 15 Nov 2018 00:08:53 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: ['Accept-Encoding,Accept-Encoding'] + vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: @@ -3015,17 +788,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586597914207857749?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586593664742460169?api-version=2018-05-01 response: body: {string: '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:57 GMT'] + date: ['Thu, 15 Nov 2018 00:09:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -3039,18 +814,19 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss create] Connection: [keep-alive] + ParameterSetName: [--resource-group --name --image --ephemeral-os-disk --os-disk-caching + --disable-overprovision --instance-count --admin-username --admin-password] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","name":"vmss_deploy_V9lWqGQGN9XuJP3cNG3jCMxDqsnVgrkr","properties":{"templateHash":"15214464966890777813","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-10T02:06:41.7836953Z","duration":"PT2M17.0918467S","correlationId":"7a9155b7-771b-43cf-87b9-eb509c210a6f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"clite7c20","adminUsername":"tosin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/tosin/.ssh/authorized_keys","keyData":"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"diffDiskSettings":{"option":"Local"},"createOption":"FromImage","caching":"ReadOnly","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"clite7c20Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clite7c20IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":false,"uniqueId":"6ac3f0ef-7874-47ba-83f0-96f05a94c146"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"}]}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Resources/deployments/vmss_deploy_p7L3eKLDATeXjcL6xgHP3UezYcTesm3y","name":"vmss_deploy_p7L3eKLDATeXjcL6xgHP3UezYcTesm3y","properties":{"templateHash":"8581684624276593118","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-15T00:09:01.2486717Z","duration":"PT2M10.0170476S","correlationId":"5b1f5b06-0987-4e43-b404-fd7918e25761","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli-test-vmss-local-2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli-test-vmss-local-2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli-test-vmss-local-2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"clite8ab0","adminUsername":"clitest1","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true},"storageProfile":{"osDisk":{"diffDiskSettings":{"option":"Local"},"createOption":"FromImage","caching":"ReadOnly","managedDisk":{"storageAccountType":"Standard_LRS"}},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"clite8ab0Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clite8ab0IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":false,"uniqueId":"d038a1ce-7d1b-44bd-b84e-e5093a4486a1"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/publicIPAddresses/cli-test-vmss-local-2LBPublicIP"}]}}'} headers: cache-control: [no-cache] - content-length: ['5191'] + content-length: ['4773'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:06:58 GMT'] + date: ['Thu, 15 Nov 2018 00:09:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -3064,6 +840,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [vmss show] Connection: [keep-alive] + ParameterSetName: [-g -n] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] @@ -3074,39 +851,36 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ - \n \"osProfile\": {\r\n \"computerNamePrefix\": \"clite7c20\"\ - ,\r\n \"adminUsername\": \"tosin\",\r\n \"linuxConfiguration\"\ - : {\r\n \"disablePasswordAuthentication\": true,\r\n \"\ - ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ - \ \"path\": \"/home/tosin/.ssh/authorized_keys\",\r\n \ - \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCohExhkhhTIzPBXbjOPCmvaOnWm6BRAvuSXe6PWD1w4HEcsXTV7yoo3C6NPe6P3TCKHlzi7KnRzStqOftgK+SLx7gEW7/wAjnTHe2luP5Y8nNzMa8r5NifAGYvbHKa5qycpcuy4vsPp1RvjoH9N5y8lVQHcRUTfCrNMQNvTOcIFK56We9jeFNOXZxQE5dhPcaIQ7CMtcHqSKD7G5xHR2UqR4TK3xUTvdksTcInk6nCwuGiC3rL5b5S67fW61iBP35pBYPEXm0xWaekEBLrQv5en6BBX25+x4yVc9D9iQf/Dgh7HbFhPy+Rekye8KqExw/R0roVngORoVnBHucVX/L/\"\ - \r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\"\ - : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ - : true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\ - \n \"diffDiskSettings\": {\r\n \"option\": \"Local\"\r\ - \n },\r\n \"createOption\": \"FromImage\",\r\n \ - \ \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \ - \ \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\ - \n \"imageReference\": {\r\n \"publisher\": \"Canonical\"\ - ,\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clite7c20Nic\"\ - ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ - dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"clite7c20IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ + \n \"osProfile\": {\r\n \"computerNamePrefix\": \"clite8ab0\"\ + ,\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\"\ + : {\r\n \"disablePasswordAuthentication\": false,\r\n \"\ + provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \ + \ \"allowExtensionOperations\": true\r\n },\r\n \"storageProfile\"\ + : {\r\n \"osDisk\": {\r\n \"diffDiskSettings\": {\r\n \ + \ \"option\": \"Local\"\r\n },\r\n \"createOption\"\ + : \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\"\ + : {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\ + \n },\r\n \"imageReference\": {\r\n \"publisher\":\ + \ \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"\ + sku\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n\ + \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ + :[{\"name\":\"clite8ab0Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ + :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ + ipConfigurations\":[{\"name\":\"clite8ab0IPConfig\",\"properties\":{\"subnet\"\ + :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/virtualNetworks/cli-test-vmss-local-1VNET/subnets/cli-test-vmss-local-1Subnet\"\ },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/backendAddressPools/cli-test-vmss-local-2LBBEPool\"\ }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Network/loadBalancers/cli-test-vmss-local-2LB/inboundNatPools/cli-test-vmss-local-2LBNatPool\"\ }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - overprovision\": false,\r\n \"uniqueId\": \"6ac3f0ef-7874-47ba-83f0-96f05a94c146\"\ + overprovision\": false,\r\n \"uniqueId\": \"d038a1ce-7d1b-44bd-b84e-e5093a4486a1\"\ \r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n\ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_ephemeral_os_disk000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli-test-vmss-local-2\"\ ,\r\n \"name\": \"cli-test-vmss-local-2\"\r\n}"} headers: cache-control: [no-cache] - content-length: ['3295'] + content-length: ['2715'] content-type: [application/json; charset=utf-8] - date: ['Sat, 10 Nov 2018 02:07:00 GMT'] + date: ['Thu, 15 Nov 2018 00:09:24 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -3114,7 +888,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;190,Microsoft.Compute/GetVMScaleSet30Min;1276'] + x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetVMScaleSet3Min;182,Microsoft.Compute/GetVMScaleSet30Min;1280'] status: {code: 200, message: OK} - request: body: null @@ -3125,6 +899,7 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--name --yes --no-wait] User-Agent: [python/3.6.5 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] @@ -3135,9 +910,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Sat, 10 Nov 2018 02:07:01 GMT'] + date: ['Thu, 15 Nov 2018 00:09:24 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk1TUzo1RkNSRUFURTo1RkVQSEVNRVJBTDo1Rk9TOjVGRHxDMzc2NjhFOTEwMTA2MDk3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk1TUzo1RkNSRUFURTo1RkVQSEVNRVJBTDo1Rk9TOjVGRHw0MUUzQjNFN0JFODRDQzhELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] From fa5faa5a8bc78be17d493332fec5cb020e823e91 Mon Sep 17 00:00:00 2001 From: Oluwatosin Adewale Date: Mon, 19 Nov 2018 17:24:45 -0800 Subject: [PATCH 9/9] Style changes. --- .../cli/command_modules/vm/_validators.py | 12 +++----- .../vm/tests/latest/test_vm_defaults.py | 29 ++++++++++--------- 2 files changed, 19 insertions(+), 22 deletions(-) diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py index a145c772583..022f5069643 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_validators.py @@ -848,8 +848,7 @@ def _validate_vm_vmss_create_auth(namespace): _prompt_for_password(namespace) # validate password - _validate_admin_password(namespace.admin_password, - namespace.os_type) + _validate_admin_password(namespace.admin_password, namespace.os_type) elif namespace.authentication_type == 'ssh': @@ -859,8 +858,7 @@ def _validate_vm_vmss_create_auth(namespace): validate_ssh_key(namespace) if not namespace.ssh_dest_key_path: - namespace.ssh_dest_key_path = \ - '/home/{}/.ssh/authorized_keys'.format(namespace.admin_username) + namespace.ssh_dest_key_path = '/home/{}/.ssh/authorized_keys'.format(namespace.admin_username) elif namespace.authentication_type == 'all': if namespace.os_type.lower() == 'windows': @@ -868,13 +866,11 @@ def _validate_vm_vmss_create_auth(namespace): if not namespace.admin_password: _prompt_for_password(namespace) - _validate_admin_password(namespace.admin_password, - namespace.os_type) + _validate_admin_password(namespace.admin_password, namespace.os_type) validate_ssh_key(namespace) if not namespace.ssh_dest_key_path: - namespace.ssh_dest_key_path = \ - '/home/{}/.ssh/authorized_keys'.format(namespace.admin_username) + namespace.ssh_dest_key_path = '/home/{}/.ssh/authorized_keys'.format(namespace.admin_username) def _prompt_for_password(namespace): diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_defaults.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_defaults.py index 847aae1a11e..54764cb52e9 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_defaults.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/test_vm_defaults.py @@ -270,6 +270,18 @@ def _set_ns(): ns.admin_password = None return ns + @staticmethod + def _new_linux_ns(authentication_type=None): + ns = TestVMDefaultAuthType._set_ns() + ns.os_type = "LINux" + if authentication_type in ("password", "all"): + ns.admin_username = 'user12345' + ns.admin_password = 'verySecret!!!' + if authentication_type in ("ssh", "all"): + ns.ssh_key_value = TestVMDefaultAuthType._get_test_ssh_key() + ns.authentication_type = authentication_type + return ns + def test_default_windows(self): ns = TestVMDefaultAuthType._set_ns() ns.os_type = "WindowS" @@ -327,25 +339,14 @@ def test_linux_with_password(self): self.assertTrue("SSH key cannot be used with password authentication type." in str(context.exception)) def test_linux_with_password_and_ssh_explicit(self): - ns = TestVMDefaultAuthType._set_ns() - ns.os_type = "LINux" - ns.authentication_type = 'all' - ns.admin_username = 'user12345' - ns.admin_password = 'verySecret!!!' - ns.ssh_key_value = self._get_test_ssh_key() - + ns = TestVMDefaultAuthType._new_linux_ns(authentication_type="all") _validate_vm_vmss_create_auth(ns) self.assertEqual(ns.authentication_type, 'all') self.assertEqual(ns.ssh_dest_key_path, '/home/{}/.ssh/authorized_keys'.format(ns.admin_username)) - def test_linux_with_password_and_ssh_explicit(self): - ns = TestVMDefaultAuthType._set_ns() - ns.os_type = "LINux" + def test_linux_with_password_and_ssh_implicit(self): + ns = TestVMDefaultAuthType._new_linux_ns(authentication_type="all") ns.authentication_type = None - ns.admin_username = 'user12345' - ns.admin_password = 'verySecret!!!' - ns.ssh_key_value = self._get_test_ssh_key() - _validate_vm_vmss_create_auth(ns) self.assertEqual(ns.authentication_type, 'all') self.assertEqual(ns.ssh_dest_key_path, '/home/{}/.ssh/authorized_keys'.format(ns.admin_username))